Uses of Interface
org.joox.Content

Packages that use Content
Package
Description
 
  • Uses of Content in org.joox

    Methods in org.joox that return Content
    Modifier and Type
    Method
    Description
    static Content
    JOOX.content(Object value)
    Get a constant content that returns a marshalled, JAXB-annotated value for all elements.
    static Content
    JOOX.content(String value)
    Get a constant content that returns the same value for all elements.
    Methods in org.joox with parameters of type Content
    Modifier and Type
    Method
    Description
    Match.after(Content content)
    Add content after each element in the set of matched elements.
    Match.append(Content content)
    Append content to the end of each element's content in the set of matched elements.
    Match.attr(String name, Content value)
    Set an attribute on all elements in the set of matched elements.
    Match.before(Content content)
    Add content before each element in the set of matched elements.
    Match.cdata(Content content)
    Set some CDATA content to all elements in the set of matched elements (possibly replacing existing content).
    Match.content(Content content)
    Add some XML content to all elements in the set of matched elements (possibly replacing existing content).
    Match.prepend(Content content)
    Prepend content to the beginning of each element's content in the set of matched elements.
    Match.rename(Content tag)
    Rename all tags in the set of matched elements to some new tag name
    Match.replaceWith(Content content)
    Replace all elements in the set of matched elements with some new content.
    Match.text(Content content)
    Set some text content to all elements in the set of matched elements (possibly replacing existing content).
    Match.wrap(Content parent)
    Wrap all elements in the set of matched elements in a new parent element