/** * Creates a new <col> element that represents an anonymous column * * @return the new element */ public static HtmlTag createAnonymousColumn() { HtmlTag col = new HtmlTagImpl(); col.setName("col"); col.setAttribute("class", "Xanonymous"); col.setAttribute("style", "display:table-column;"); return col; }
@Override public CompositeElement createComposite(final IElementType type) { if (type == XML_TAG) { return new XmlTagImpl(); } else if (type == XML_CONDITIONAL_SECTION) { return new XmlConditionalSectionImpl(); } else if (type == HTML_TAG) { return new HtmlTagImpl(); } else if (type == XML_TEXT) { return new XmlTextImpl(); } else if (type == XML_PROCESSING_INSTRUCTION) { return new XmlProcessingInstructionImpl(); } else if (type == XML_DOCUMENT) { return new XmlDocumentImpl(); } else if (type == HTML_DOCUMENT) { return new HtmlDocumentImpl(); } else if (type == XML_PROLOG) { return new XmlPrologImpl(); } else if (type == XML_DECL) { return new XmlDeclImpl(); } else if (type == XML_ATTRIBUTE) { return new XmlAttributeImpl(); } else if (type == XML_ATTRIBUTE_VALUE) { return new XmlAttributeValueImpl(); } else if (type == XML_COMMENT) { return new XmlCommentImpl(); } else if (type == XML_DOCTYPE) { return new XmlDoctypeImpl(); } else if (type == XML_MARKUP_DECL) { return new XmlMarkupDeclImpl(); } else if (type == XML_ELEMENT_DECL) { return new XmlElementDeclImpl(); } else if (type == XML_ENTITY_DECL) { return new XmlEntityDeclImpl(); } else if (type == XML_ATTLIST_DECL) { return new XmlAttlistDeclImpl(); } else if (type == XML_ATTRIBUTE_DECL) { return new XmlAttributeDeclImpl(); } else if (type == XML_NOTATION_DECL) { return new XmlNotationDeclImpl(); } else if (type == XML_ELEMENT_CONTENT_SPEC) { return new XmlElementContentSpecImpl(); } else if (type == XML_ELEMENT_CONTENT_GROUP) { return new XmlElementContentGroupImpl(); } else if (type == XML_ENTITY_REF) { return new XmlEntityRefImpl(); } else if (type == XML_ENUMERATED_TYPE) { return new XmlEnumeratedTypeImpl(); } else if (type == XML_CDATA) { return new CompositePsiElement(XML_CDATA) {}; } else if (type instanceof ITemplateDataElementType) { return new XmlFileElement(type, null); } return null; }
public CompositeElement createComposite(final IElementType type) { if (type == XML_TAG) { return new XmlTagImpl(); } else if (type == XML_CONDITIONAL_SECTION) { return new XmlConditionalSectionImpl(); } else if (type == HTML_TAG) { return new HtmlTagImpl(); } else if (type == XML_TEXT) { return new XmlTextImpl(); } else if (type == XML_PROCESSING_INSTRUCTION) { return new XmlProcessingInstructionImpl(); } else if (type == XML_DOCUMENT) { return new XmlDocumentImpl(); } else if (type == HTML_DOCUMENT) { return new HtmlDocumentImpl(); } else if (type == XML_PROLOG) { return new XmlPrologImpl(); } else if (type == XML_DECL) { return new XmlDeclImpl(); } else if (type == XML_ATTRIBUTE) { return new XmlAttributeImpl(); } else if (type == XML_ATTRIBUTE_VALUE) { return new XmlAttributeValueImpl(); } else if (type == XML_COMMENT) { return new XmlCommentImpl(); } else if (type == XML_DOCTYPE) { return new XmlDoctypeImpl(); } else if (type == XML_MARKUP_DECL) { return new XmlMarkupDeclImpl(); } else if (type == XML_ELEMENT_DECL) { return new XmlElementDeclImpl(); } else if (type == XML_ENTITY_DECL) { return new XmlEntityDeclImpl(); } else if (type == XML_ATTLIST_DECL) { return new XmlAttlistDeclImpl(); } else if (type == XML_ATTRIBUTE_DECL) { return new XmlAttributeDeclImpl(); } else if (type == XML_NOTATION_DECL) { return new XmlNotationDeclImpl(); } else if (type == XML_ELEMENT_CONTENT_SPEC) { return new XmlElementContentSpecImpl(); } else if (type == XML_ELEMENT_CONTENT_GROUP) { return new XmlElementContentGroupImpl(); } else if (type == XML_ENTITY_REF) { return new XmlEntityRefImpl(); } else if (type == XML_ENUMERATED_TYPE) { return new XmlEnumeratedTypeImpl(); } else if (type == XML_CDATA) { return new CompositePsiElement(XML_CDATA) {}; } else if (type instanceof ITemplateDataElementType) { return new XmlFileElement(type, null); } return null; }
@NotNull @Override public CompositeElement createComposite(IElementType type) { if (type == XML_TAG) { return new XmlTagImpl(); } else if (type == XML_CONDITIONAL_SECTION) { return new XmlConditionalSectionImpl(); } else if (type == HTML_TAG) { return new HtmlTagImpl(); } else if (type == XML_TEXT) { return new XmlTextImpl(); } else if (type == XML_PROCESSING_INSTRUCTION) { return new XmlProcessingInstructionImpl(); } else if (type == XML_DOCUMENT) { return new XmlDocumentImpl(); } else if (type == HTML_DOCUMENT) { return new HtmlDocumentImpl(); } else if (type == XML_PROLOG) { return new XmlPrologImpl(); } else if (type == XML_DECL) { return new XmlDeclImpl(); } else if (type == XML_ATTRIBUTE) { return new XmlAttributeImpl(); } else if (type == XML_ATTRIBUTE_VALUE) { return new XmlAttributeValueImpl(); } else if (type == XML_COMMENT) { return new XmlCommentImpl(); } else if (type == XML_DOCTYPE) { return new XmlDoctypeImpl(); } else if (type == XML_MARKUP_DECL) { return new XmlMarkupDeclImpl(); } else if (type == XML_ELEMENT_DECL) { return new XmlElementDeclImpl(); } else if (type == XML_ENTITY_DECL) { return new XmlEntityDeclImpl(); } else if (type == XML_ATTLIST_DECL) { return new XmlAttlistDeclImpl(); } else if (type == XML_ATTRIBUTE_DECL) { return new XmlAttributeDeclImpl(); } else if (type == XML_NOTATION_DECL) { return new XmlNotationDeclImpl(); } else if (type == XML_ELEMENT_CONTENT_SPEC) { return new XmlElementContentSpecImpl(); } else if (type == XML_ELEMENT_CONTENT_GROUP) { return new XmlElementContentGroupImpl(); } else if (type == XML_ENTITY_REF) { return new XmlEntityRefImpl(); } else if (type == XML_ENUMERATED_TYPE) { return new XmlEnumeratedTypeImpl(); } else if (type == XML_CDATA) { return new CompositePsiElement(XML_CDATA) {}; } else if (type instanceof TemplateDataElementType) { return new XmlFileElement(type, null); } return null; }