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 TextPaneSkinElementView.backgroundColorChanged(Element element, Color previousBackgroundColor)
           
 void TextPaneSkinElementView.fontChanged(Element element, Font previousFont)
           
 void TextPaneSkinElementView.foregroundColorChanged(Element element, Color previousForegroundColor)
           
 void TextPaneSkinElementView.nodeInserted(Element element, int index)
           
 void TextPaneSkinElementView.nodesRemoved(Element element, int index, Sequence<Node> nodes)
           
 void TextPaneSkinNodeView.parentChanged(Node nodeArgument, Element previousParent)
           
 void TextPaneSkinElementView.strikethroughChanged(Element element)
           
 void TextPaneSkinElementView.underlineChanged(Element element)
           
 

Constructors in org.apache.pivot.wtk.skin with parameters of type Element
TextPaneSkinElementView(Element element)
           
TextPaneSkinVerticalElementView(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.
static class List.Item
          Element representing a list item.
 class NumberedList
          Element representing a numbered list.
 class Paragraph
          Element representing a paragraph.
 class Span
          Deprecated. class has been renamed to TextSpan
 class TextSpan
          Element representing an inline range of styled characters.
 

Methods in org.apache.pivot.wtk.text that return Element
abstract  Element Element.duplicate(boolean recursive)
           
 Element Node.getParent()
          Returns the parent element of this node.
 Element Element.getRange(int offset, int characterCountArgument)
           
 

Methods in org.apache.pivot.wtk.text with parameters of type Element
 void ElementListener.backgroundColorChanged(Element element, Color previousBackgroundColor)
          Called when the background color has changed.
 void ElementListener.Adapter.backgroundColorChanged(Element element, Color previousBackgroundColor)
           
 void ElementListener.fontChanged(Element element, Font previousFont)
          Called when the font has changed.
 void ElementListener.Adapter.fontChanged(Element element, Font previousFont)
           
 void ElementListener.foregroundColorChanged(Element element, Color previousForegroundColor)
          Called when the foreground color has changed.
 void ElementListener.Adapter.foregroundColorChanged(Element element, Color previousForegroundColor)
           
 void ElementListener.nodeInserted(Element element, int index)
          Called when a node has been inserted into an element.
 void ElementListener.Adapter.nodeInserted(Element element, int index)
           
 void ElementListener.nodesRemoved(Element element, int index, Sequence<Node> nodes)
          Called when nodes have been removed from an element.
 void ElementListener.Adapter.nodesRemoved(Element element, int index, Sequence<Node> nodes)
           
 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.
 void NodeListener.Adapter.parentChanged(Node node, Element previousParent)
           
protected  void Document.setParent(Element parent)
           
protected  void Node.setParent(Element parent)
           
 void ElementListener.strikethroughChanged(Element element)
          Called when strikethrough style has changed.
 void ElementListener.Adapter.strikethroughChanged(Element element)
           
 void ElementListener.underlineChanged(Element element)
          Called when underline style has changed.
 void ElementListener.Adapter.underlineChanged(Element element)
           
 

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