Interface BindingParameter.BrowseHelper
- 
- Enclosing interface:
- BindingParameter<T>
 
 public static interface BindingParameter.BrowseHelperContains the functions needed for a binding parameter's editor to display a popup-tree so that the user can browse for the possible values for this parameter
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringconvertElementToString(javax.swing.tree.TreePath path)Convert a tree path to a string that is applicable for this propertyjavax.swing.tree.TreeModelgetTreeModel()The tree model for the popup treebooleanisValidSelection(javax.swing.tree.TreePath path)Determines whether a given tree path is suitable for selection.voidsetupTree(javax.swing.JTree tree)Provides a chance to set up the jtree to your liking
 
- 
- 
- 
Method Detail- 
getTreeModeljavax.swing.tree.TreeModel getTreeModel() The tree model for the popup tree
 - 
convertElementToStringjava.lang.String convertElementToString(javax.swing.tree.TreePath path) Convert a tree path to a string that is applicable for this property
 - 
isValidSelectionboolean isValidSelection(javax.swing.tree.TreePath path) Determines whether a given tree path is suitable for selection.
 - 
setupTreevoid setupTree(javax.swing.JTree tree) Provides a chance to set up the jtree to your liking
 
- 
 
-