Uses of Interface
org.jppf.ui.options.OptionElement

Packages that use OptionElement
org.jppf.ui.actions Classes for management of actions associated to toolbar buttons and right-click menu items. 
org.jppf.ui.monitoring.data Set of classes to handle the incoming statistics from the server. 
org.jppf.ui.monitoring.job Classes supporting the UI for job monitoring via JMX. 
org.jppf.ui.monitoring.node Classes supporting the UI for nodes monitoring via JMX. 
org.jppf.ui.options Classes used for automatic generation of options pages. 
org.jppf.ui.options.event Classes supporting the event handling mechanisms for the options. 
org.jppf.ui.options.factory Factory classes used for definiting the options pages in the admin tool. 
org.jppf.ui.options.xml Utility classes to build UI components from XML descriptors. 
org.jppf.ui.treetable Implementation of the JTreeTable such as published in this Sun's article
 

Uses of OptionElement in org.jppf.ui.actions
 

Constructors in org.jppf.ui.actions with parameters of type OptionElement
ActionsInitializer(OptionElement mainPanel, ActionHolder actionHolder, String btnContainerName)
          Initialize this actions initializer.
ActionsInitializer(OptionElement mainPanel, String btnContainerName)
          Initialize this actions initializer.
 

Uses of OptionElement in org.jppf.ui.monitoring.data
 

Methods in org.jppf.ui.monitoring.data that return OptionElement
 OptionElement StatsHandler.getServerListOption()
          Get the option containing the combobox with the list of driver connections.
 

Methods in org.jppf.ui.monitoring.data with parameters of type OptionElement
 void StatsHandler.setServerListOption(OptionElement serverListOption)
          Set the option containing the combobox with the list of driver connections.
 

Uses of OptionElement in org.jppf.ui.monitoring.job
 

Classes in org.jppf.ui.monitoring.job that implement OptionElement
 class JobDataPanel
          Panel displaying the tree of all driver connections and attached nodes.
 

Uses of OptionElement in org.jppf.ui.monitoring.node
 

Classes in org.jppf.ui.monitoring.node that implement OptionElement
 class NodeDataPanel
          Panel displaying the tree of all driver connections and attached nodes.
 

Uses of OptionElement in org.jppf.ui.options
 

Subinterfaces of OptionElement in org.jppf.ui.options
 interface Option
          Instances of this interface represent one option in an options page.
 interface OptionsPage
          Interface for dynamic UI components representing a page (or panel) container.
 

Classes in org.jppf.ui.options that implement OptionElement
 class AbstractOption
          Default abstract implementation of the Option interface.
 class AbstractOptionElement
          Default abstract implementation of the OptionElement interface.
 class BooleanOption
          An option for boolean values, represented as a checkbox.
 class ButtonOption
          Option implementation with a JButton as the underlying component.
 class ComboBoxOption
          Option that uses a combo box to select its value.
 class FileChooserOption
          This option encapsulates a file chooser control.
 class FillerOption
          An option for boolean values, represented as a checkbox.
 class FormattedNumberOption
          Option class for numbers formatted using a pattern, as defined in class DecimalFormat.
 class JavaOption
          An option that displays a UI component created through a Java class.
 class LabelOption
          An option for simple labels that have text, an icon, or both.
 class ListOption
          Option holding a JList as its UI component.
 class OptionPanel
          Instances of this page represent dynamic UI components representing a page (or panel) container, with the underlying Swing component being a JPanel.
 class PasswordOption
          Option for a password value.
 class PlainTextOption
          Option for a plain string value.
 class RadioButtonOption
          An option for boolean values, represented as a radio button.
 class SpinnerNumberOption
          An option that uses a JSpinner control to edit its value.
 class SplitPaneOption
          This option class encapsulates a split pane, as the one present in the Swing api.
 class TabbedPaneOption
          This option class encapsulates a tabbed pane, as the one present in the Swing api.
 class TextAreaOption
          An option that uses a JTextArea to edit its value.
 class TextOption
          Text option displayed as a text field.
 class ToolbarOption
          This option class encapsulates a JToolBar.
 class ToolbarSeparatorOption
          An option for boolean values, represented as a checkbox.
 

Fields in org.jppf.ui.options declared as OptionElement
protected  OptionElement AbstractOptionElement.parent
          The parent panel for this option element.
protected  OptionElement AbstractOptionElement.root
          The root of the option tree this option belongs to.
 

Fields in org.jppf.ui.options with type parameters of type OptionElement
protected  List<OptionElement> ToolbarOption.children
          The list of children of this options page.
protected  List<OptionElement> TabbedPaneOption.children
          The list of children of this options page.
protected  List<OptionElement> SplitPaneOption.children
          The list of children of this options page.
protected  List<OptionElement> OptionPanel.children
          The list of children of this options page.
 

Methods in org.jppf.ui.options that return OptionElement
 OptionElement OptionElement.findElement(String path)
          Find the element with the specified path in the options tree.
 OptionElement AbstractOptionElement.findElement(String path)
          Find the element with the specified path in the options tree.
 OptionElement OptionElement.findFirstWithName(String name)
          Find the first element with the specified name in the subtree of which this element is the root.
 OptionElement AbstractOptionElement.findFirstWithName(String name)
          Find the first element with the specified name in the subtree of which this element is the root.
 OptionElement OptionElement.findLastWithName(String name)
          Find the last element with the specified name in the subtree of which this element is the root.
 OptionElement AbstractOptionElement.findLastWithName(String name)
          Find the last element with the specified name in the subtree of which this element is the root.
protected  OptionElement AbstractOptionElement.getChildForName(String childName)
          Find the child element of this option element with the specified name.
 OptionElement OptionElement.getParent()
          Get the parent page for this options page.
 OptionElement AbstractOptionElement.getParent()
          Get the parent panel for this option.
 OptionElement OptionElement.getRoot()
          Get the root of the option tree this option belongs to.
 OptionElement AbstractOptionElement.getRoot()
          Get the root of the option tree this option belongs to.
 

Methods in org.jppf.ui.options that return types with arguments of type OptionElement
 List<OptionElement> OptionElement.findAllWithName(String name)
          Find all the elements with the specified name in the subtree of which this element is the root.
 List<OptionElement> AbstractOptionElement.findAllWithName(String name)
          Find all the elements with the specified name in the subtree of which this element is the root.
 List<OptionElement> ToolbarOption.getChildren()
          Get the options in this page.
 List<OptionElement> TabbedPaneOption.getChildren()
          Get the options in this page.
 List<OptionElement> SplitPaneOption.getChildren()
          Get the options in this page.
 List<OptionElement> OptionsPage.getChildren()
          Get the options in this page.
 List<OptionElement> OptionPanel.getChildren()
          Get the options in this page.
 

Methods in org.jppf.ui.options with parameters of type OptionElement
 void ToolbarOption.add(OptionElement element)
          Add an element to this options page.
 void TabbedPaneOption.add(OptionElement element)
          Add an element to this options page.
 void SplitPaneOption.add(OptionElement element)
          Add an element to this options page.
 void OptionsPage.add(OptionElement element)
          Add an element to this options page.
 void OptionPanel.add(OptionElement element)
          Add an element to this options page.
 void ToolbarOption.remove(OptionElement element)
          Remove an element from this options page.
 void TabbedPaneOption.remove(OptionElement element)
          Remove an element from this options page.
 void SplitPaneOption.remove(OptionElement element)
          Remove an element from this options page.
 void OptionsPage.remove(OptionElement element)
          Remove an element from this options page.
 void OptionPanel.remove(OptionElement element)
          Remove an element from this options page.
 void AbstractOptionElement.setParent(OptionElement parent)
          Set the parent panel for this option.
 

Method parameters in org.jppf.ui.options with type arguments of type OptionElement
protected  void AbstractOptionElement.findAll(String name, List<OptionElement> list)
          Find all the elements with the specified name in the subtree of which this element is the root.
 

Uses of OptionElement in org.jppf.ui.options.event
 

Methods in org.jppf.ui.options.event that return OptionElement
 OptionElement ValueChangeEvent.getOption()
          Get the source of this event as an option.
 

Constructors in org.jppf.ui.options.event with parameters of type OptionElement
ValueChangeEvent(OptionElement option)
          Initialize this event with the specified event source.
 

Uses of OptionElement in org.jppf.ui.options.factory
 

Fields in org.jppf.ui.options.factory declared as OptionElement
 OptionElement OptionsHandler.OptionNode.elt
          The corresponding option element.
 

Methods in org.jppf.ui.options.factory that return OptionElement
static OptionElement OptionsHandler.addPage(OptionElement page)
          Add a page to the list of pages managed by this handler.
static OptionElement OptionsHandler.addPageFromURL(String xmlPath, String baseName)
          Add a page built from an xml document.
static OptionElement OptionsHandler.addPageFromXml(String xmlPath)
          Add a page built from an xml document.
static OptionElement OptionsHandler.getPage(String name)
          Retrieve a page from its name.
static OptionElement OptionsHandler.loadPageFromURL(String xmlPath, String baseName)
          Load a page built from an xml document.
static OptionElement OptionsHandler.loadPageFromXml(String xmlPath)
          Load a page built from an xml document.
 

Methods in org.jppf.ui.options.factory that return types with arguments of type OptionElement
static List<OptionElement> OptionsHandler.getPageList()
          Get the list of option pages managed by this handler.
 

Methods in org.jppf.ui.options.factory with parameters of type OptionElement
static OptionElement OptionsHandler.addPage(OptionElement page)
          Add a page to the list of pages managed by this handler.
static OptionsHandler.OptionNode OptionsHandler.buildPersistenceGraph(OptionElement elt)
          Build a graph of the persistent elements.
 

Constructors in org.jppf.ui.options.factory with parameters of type OptionElement
OptionsHandler.OptionNode(OptionElement elt)
          Initilaize this node.
 

Uses of OptionElement in org.jppf.ui.options.xml
 

Methods in org.jppf.ui.options.xml that return OptionElement
 OptionElement OptionElementFactory.buildPage(OptionDescriptor desc)
          Build an option page from the specified option descriptor.
 OptionElement OptionsPageBuilder.buildPage(String xmlPath, String baseName)
          Build an option page from the specified XML descriptor.
 OptionElement OptionsPageBuilder.buildPageFromContent(String content, String baseName)
          Build an option page from the specified XML descriptor.
 OptionElement OptionsPageBuilder.buildPageFromURL(String urlString, String baseName)
          Build an option page from an XML descriptor specified as a URL.
 OptionElement OptionElementFactory.buildSplitPane(OptionDescriptor desc)
          Build a split pane option from the specified option descriptor.
 OptionElement OptionElementFactory.buildTabbedPane(OptionDescriptor desc)
          Build a toolbar option from the specified option descriptor.
 OptionElement OptionElementFactory.buildToolbar(OptionDescriptor desc)
          Build a toolbar option from the specified option descriptor.
 

Methods in org.jppf.ui.options.xml that return types with arguments of type OptionElement
 List<OptionElement> OptionsPageBuilder.build(OptionDescriptor desc)
          Add all the children elements in a page.
 List<OptionElement> OptionElementFactory.loadImport(OptionDescriptor desc)
          Build a toolbar option from the specified option descriptor.
 

Methods in org.jppf.ui.options.xml with parameters of type OptionElement
 void OptionElementFactory.addDebugComp(OptionElement elt, String source, String location)
          Add an invisible component from which to get a popup menu to reload the page.
 void OptionsPageBuilder.triggerFinalEvents(OptionElement elt)
          Trigger all finalizers for all options, before they are disposed.
 void OptionsPageBuilder.triggerInitialEvents(OptionElement elt)
          Trigger all initializers for all options, immediately after the page has been built.
 

Constructors in org.jppf.ui.options.xml with parameters of type OptionElement
DebugMouseListener(OptionElement option, String source, String location)
           
 

Uses of OptionElement in org.jppf.ui.treetable
 

Classes in org.jppf.ui.treetable that implement OptionElement
 class AbstractTreeTableOption
          Abstract implementation of a tree table-based option.
 



Copyright © 2005-2010 JPPF Team.