Uses of Class
com.machinezoo.pushmode.dom.DomContent
Packages that use DomContent
-
Uses of DomContent in com.machinezoo.pushmode.dom
Subclasses of DomContent in com.machinezoo.pushmode.domModifier and TypeClassDescriptionclass
Base class forDomElement
andDomFragment
.class
Element in PushMode DOM tree.final class
Fragment of PushMode DOM tree.class
Text node in PushMode DOM tree.Methods in com.machinezoo.pushmode.dom with type parameters of type DomContentModifier and TypeMethodDescription<C extends DomContent>
DomContainerDomContainer.add
(Collection<C> children) Adds all nodes in aCollection
to the list of children.<C extends DomContent>
DomContainerAdds all nodes in aStream
to the list of children.<C extends DomContent>
DomElementDomElement.add
(Collection<C> children) Adds all nodes in aCollection
to this element.<C extends DomContent>
DomElementAdds all nodes in aStream
to this element.<C extends DomContent>
DomFragmentDomFragment.add
(Collection<C> children) Adds all nodes in aCollection
to this fragment.<C extends DomContent>
DomFragmentAdds all nodes in aStream
to this fragment.Methods in com.machinezoo.pushmode.dom that return DomContentModifier and TypeMethodDescriptionabstract DomContent
DomContent.clone()
Creates deep clone of this node.abstract DomContent
DomContent.freeze()
Protects this node from further modification.DomContainer.rawChildren()
Gets child node buffer.Methods in com.machinezoo.pushmode.dom that return types with arguments of type DomContentModifier and TypeMethodDescriptionDomContainer.children()
Lists all children in this element or fragment.Methods in com.machinezoo.pushmode.dom with parameters of type DomContentModifier and TypeMethodDescriptionDomContainer.add
(DomContent child) Adds new child node to the list of children.DomElement.add
(DomContent child) Adds new child node to this element.DomFragment.add
(DomContent child) Adds new child node to this fragment.DomFormatter.format
(DomContent content) static DomFragment
DomFragment.join
(DomContent separator, Iterable<? extends DomContent> items) void
DomContainer.rawChildren
(int count, DomContent[] children) Sets child node buffer.Method parameters in com.machinezoo.pushmode.dom with type arguments of type DomContentModifier and TypeMethodDescriptionstatic DomFragment
DomFragment.join
(DomContent separator, Iterable<? extends DomContent> items) static DomFragment
DomFragment.join
(String separator, Iterable<? extends DomContent> items)