Uses of Class
com.abstractics.xmlpanel.swing.XmlPanel

Packages that use XmlPanel
com.abstractics.xmlpanel.swing   
com.abstractics.xmlpanel.swing.componentcreator   
com.abstractics.xmlpanel.xmllayout   
 

Uses of XmlPanel in com.abstractics.xmlpanel.swing
 

Methods in com.abstractics.xmlpanel.swing that return XmlPanel
static XmlPanel XmlPanel.create()
          Deprecated. Factory method is no longer needed. Use the XmlPanel() constructor.
 XmlPanel XmlPanel.getParentXmlPanel()
           
 XmlPanel XmlPanel.getRootXmlPanel()
           
 

Methods in com.abstractics.xmlpanel.swing with parameters of type XmlPanel
static XmlPanelEditDialog XmlPanelEditDialog.create(XmlPanel xmlPanel)
          Factory method to create the XmlPanelEditDialog object against the given XmlPanel
 java.awt.Component XmlPanel.XmlPanelComponentCreator.createComponent(org.w3c.dom.Element element, XmlPanel panel)
           
 

Constructors in com.abstractics.xmlpanel.swing with parameters of type XmlPanel
XmlPanelLayoutManager(org.w3c.dom.Element element, XmlPanel panel)
          Package level constructor - this object should only be instantiated through the XmlPanel itself
 

Uses of XmlPanel in com.abstractics.xmlpanel.swing.componentcreator
 

Methods in com.abstractics.xmlpanel.swing.componentcreator with parameters of type XmlPanel
 java.awt.Component JScrollPaneCreator.constructComponent(org.w3c.dom.Element element, XmlPanel panel)
           
 java.awt.Component GenericClassComponentCreator.constructComponent(org.w3c.dom.Element element, XmlPanel panel)
          Instantiates an object using the no-argument constructor of the class that was used to instatiate this object.
This implementation also takes into account any existing component in the panel.
 java.awt.Component ComponentFactory.createComponent(org.w3c.dom.Element element, XmlPanel panel)
          Gets the XmlPanelComponentCreator according to the "type" attribute specified in the element, then calls the createComponent method on the creator to generate the Component.
 java.awt.Component ComponentCreator.createComponent(org.w3c.dom.Element element, XmlPanel panel)
          Given an element representing a cell in an XMLPanel, this method should construct the appropriate Component for the type that this component is looking for, setting all of the properties necessary.
The XmlPanel is given in case it is needed to determine properties of the component.
abstract  java.awt.Component AbstractComponentCreator.constructComponent(org.w3c.dom.Element element, XmlPanel panel)
          Given an element representing a cell in an XMLPanel, this method should construct the appropriate Component for the type that this component is looking for, setting all of the properties necessary.

This method will be called by this abstract class to create the component before setting the properties and border.
 java.awt.Component AbstractComponentCreator.createComponent(org.w3c.dom.Element element, XmlPanel panel)
           
 

Uses of XmlPanel in com.abstractics.xmlpanel.xmllayout
 

Constructors in com.abstractics.xmlpanel.xmllayout with parameters of type XmlPanel
XmlLayoutRow(XmlLayout parentPanel, XmlPanel panel, org.w3c.dom.Element element)
          Only package level constructable.
XmlLayoutCell(XmlLayoutRow parentRow, XmlPanel panel, org.w3c.dom.Element element)
          Only package level constructable.
XmlLayout(org.w3c.dom.Element element, XmlPanel panel)
          Creates a layout from the Document given and uses any existing components in the map (keyed by component name) if they match names given in the XML, instead of creating new components.
XmlLayout(java.lang.String xml, XmlPanel panel)
          Creates a layout from the XML string given and uses any existing components in the map (keyed by component name) if they match names given in the XML, instead of creating new components.