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 Summary
All 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
- 
getTreeModel
javax.swing.tree.TreeModel getTreeModel()
The tree model for the popup tree 
- 
convertElementToString
java.lang.String convertElementToString(javax.swing.tree.TreePath path)
Convert a tree path to a string that is applicable for this property 
- 
isValidSelection
boolean isValidSelection(javax.swing.tree.TreePath path)
Determines whether a given tree path is suitable for selection. 
- 
setupTree
void setupTree(javax.swing.JTree tree)
Provides a chance to set up the jtree to your liking 
 - 
 
 -