Uses of Class
org.apache.pivot.wtk.text.Element

Packages that use Element
org.apache.pivot.wtk.skin Contains common skins and abstract base classes for theme-specific skins. 
org.apache.pivot.wtk.text Contains classes representing a text object model. 
 

Uses of Element in org.apache.pivot.wtk.skin
 

Methods in org.apache.pivot.wtk.skin with parameters of type Element
 void TextAreaSkin.ElementView.nodeInserted(Element element, int index)
           
 void TextAreaSkin.DocumentView.nodeInserted(Element element, int index)
           
 void TextAreaSkin.ElementView.nodesRemoved(Element element, int index, Sequence<Node> nodes)
           
 void TextAreaSkin.DocumentView.nodesRemoved(Element element, int index, Sequence<Node> nodes)
           
 void TextAreaSkin.NodeView.parentChanged(Node node, Element previousParent)
           
 

Constructors in org.apache.pivot.wtk.skin with parameters of type Element
TextAreaSkin.ElementView(Element element)
           
 

Uses of Element in org.apache.pivot.wtk.text
 

Subclasses of Element in org.apache.pivot.wtk.text
 class Block
          Abstract base class for block elements.
 class BulletedList
          Element representing a bulleted list.
 class Document
          Node representing the root of an element hierarchy.
 class List
          Abstract base class for list elements.
 class List.Item
          Element representing a list item.
 class NumberedList
          Element representing a numbered list.
 class Paragraph
          Element representing a paragraph.
 class Span
          Element representing an inline range of styled characters.
 

Methods in org.apache.pivot.wtk.text that return Element
 Element Node.getParent()
          Returns the parent element of this node.
 

Methods in org.apache.pivot.wtk.text with parameters of type Element
 void ElementListener.nodeInserted(Element element, int index)
          Called when a node has been inserted into an element.
 void ElementListener.nodesRemoved(Element element, int index, Sequence<Node> nodes)
          Called when nodes have been removed from an element.
 void NodeListener.parentChanged(Node node, Element previousParent)
          Called when a node's parent has changed, either as a result of being added to or removed from an element.
protected  void Node.setParent(Element parent)
           
protected  void Document.setParent(Element parent)
           
 

Constructors in org.apache.pivot.wtk.text with parameters of type Element
Element(Element element, boolean recursive)