Uses of Class
org.symphonyoss.symphony.messageml.elements.Element
-
Packages that use Element Package Description org.symphonyoss.symphony.messageml org.symphonyoss.symphony.messageml.elements -
-
Uses of Element in org.symphonyoss.symphony.messageml
Methods in org.symphonyoss.symphony.messageml that return Element Modifier and Type Method Description ElementMessageMLParser. createElement(Element element, Element parent)Create a MessageML element based on the DOM element's name and attributes.Methods in org.symphonyoss.symphony.messageml with parameters of type Element Modifier and Type Method Description ElementMessageMLParser. createElement(Element element, Element parent)Create a MessageML element based on the DOM element's name and attributes. -
Uses of Element in org.symphonyoss.symphony.messageml.elements
Subclasses of Element in org.symphonyoss.symphony.messageml.elements Modifier and Type Class Description classBoldClass representing bold text.classBulletListClass representing a bulleted list container.classButtonClass representing a Symphony Elements buttonclassCardClass representing a convenience element which has a number of visual elements and which can be opened and closed.classCardBodyClass representing a convenience element for a card body container.classCardHeaderClass representing a convenience element for a card header container.classCashTagClass representing a convenience element for a cash tag.classChimeClass representing a convenience element for a chime.classCodeClass representing a block container for block or inline content.classDivClass representing a block container for block or inline content.classEmojiClass representing an emojiclassEntityclassFormClass representing a Symphony Elements formclassHashTagClass representing a convenience element for a hash tag.classHeaderClass representing a section heading of level 1-6.classHorizontalRuleClass representing a horizontal rule.classImageClass representing an image.classItalicClass representing italics text.classLineBreakClass representing a line break.classLinkClass representing a link.classListItemClass representing a list item.classMentionClass representing a convenience element for a user mention.classMessageMLClass representing a MessageML document (i.e.classOrderedListClass representing an ordered list container.classParagraphClass representing a paragraph.classPreformattedClass representing preformatted text.classSpanClass representing an inline container for inline content.classTableClass representing a table container.classTableBodyClass representing a table body container.classTableCellClass representing a table cell container.classTableFooterClass representing a table footer container.classTableHeaderClass representing a table header container.classTableHeaderCellClass representing a table header cell container.classTableRowClass representing a table row container.classTextNodeClass representing text content.Methods in org.symphonyoss.symphony.messageml.elements that return Element Modifier and Type Method Description ElementElement. getChild(int n)Return the nth child of the element.ElementElement. getParent()Return the parent of the element.Methods in org.symphonyoss.symphony.messageml.elements that return types with arguments of type Element Modifier and Type Method Description List<Element>Element. findElements(Class<?> type)Search the MessageML tree (depth-first) for elements of a given type.List<Element>Element. findElements(String tag)Search the MessageML tree (depth-first) for elements with a given MessageML tag.List<Element>Element. findElements(String attribute, String value)Search the MessageML tree (depth-first) for elements with a given attribute-value pair.List<Element>Element. getChildren()Return a list of the element's children.Methods in org.symphonyoss.symphony.messageml.elements with parameters of type Element Modifier and Type Method Description voidElement. addChild(Element child)Append a child to the element.Constructors in org.symphonyoss.symphony.messageml.elements with parameters of type Element Constructor Description Bold(Element parent)BulletList(Element parent)Button(Element parent)Card(Element parent, FormatEnum format)CardBody(Element parent, FormatEnum format)CardHeader(Element parent, FormatEnum format)CashTag(Element parent, int entityIndex)CashTag(Element parent, int entityIndex, String value)CashTag(Element parent, String presentationMlTag, String value)Chime(Element parent, FormatEnum format)Code(Element parent)Div(Element parent)Emoji(Element parent, int entityIndex)Emoji(Element parent, String shortcode, int entityIndex)Form(Element parent)HashTag(Element parent, int entityIndex)HashTag(Element parent, int entityIndex, String value)HashTag(Element parent, String presentationMlTag, String value)Header(Element parent, String tag)HorizontalRule(Element parent)Image(Element parent)Italic(Element parent)LineBreak(Element parent)Link(Element parent, String href, IDataProvider dataProvider)Link(Element parent, IDataProvider dataProvider)ListItem(Element parent)Mention(Element parent, int entityIndex, Long uid, IDataProvider dataProvider)Mention(Element parent, int entityIndex, IDataProvider dataProvider)Mention(Element parent, String presentationMlTag, Long uid, IDataProvider dataProvider)OrderedList(Element parent)Paragraph(Element parent)Preformatted(Element parent)Span(Element parent)Table(Element parent)TableBody(Element parent)TableCell(Element parent)TableFooter(Element parent)TableHeader(Element parent)TableHeaderCell(Element parent)TableRow(Element parent)TextNode(Element parent, String text)TextNode(Element parent, Text node)
-