Uses of Interface
javax.swing.tree.TreeCellEditor
Packages that use TreeCellEditor
Package
Description
Provides a set of "lightweight" (all-Java language) components
that, to the maximum degree possible, work the same on all platforms.
Provides user interface objects built according to the Basic look and feel.
Provides classes and interfaces for dealing with
javax.swing.JTree
.-
Uses of TreeCellEditor in javax.swing
Classes in javax.swing that implement TreeCellEditorModifier and TypeClassDescriptionclass
The default editor for table and tree cells.Fields in javax.swing declared as TreeCellEditorModifier and TypeFieldDescriptionprotected TreeCellEditor
JTree.cellEditor
Editor for the entries.Methods in javax.swing that return TreeCellEditorModifier and TypeMethodDescriptionJTree.getCellEditor()
Returns the editor used to edit entries in the tree.Methods in javax.swing with parameters of type TreeCellEditorModifier and TypeMethodDescriptionvoid
JTree.setCellEditor
(TreeCellEditor cellEditor) Sets the cell editor. -
Uses of TreeCellEditor in javax.swing.plaf.basic
Fields in javax.swing.plaf.basic declared as TreeCellEditorModifier and TypeFieldDescriptionprotected TreeCellEditor
BasicTreeUI.cellEditor
Editor for the tree.Methods in javax.swing.plaf.basic that return TreeCellEditorModifier and TypeMethodDescriptionprotected TreeCellEditor
BasicTreeUI.createDefaultCellEditor()
Creates a default cell editor.protected TreeCellEditor
BasicTreeUI.getCellEditor()
Returns the editor used to edit entries in the drawn tree component, ornull
if the tree cannot be edited.Methods in javax.swing.plaf.basic with parameters of type TreeCellEditorModifier and TypeMethodDescriptionprotected void
BasicTreeUI.setCellEditor
(TreeCellEditor editor) Sets the cell editor. -
Uses of TreeCellEditor in javax.swing.tree
Classes in javax.swing.tree that implement TreeCellEditorFields in javax.swing.tree declared as TreeCellEditorModifier and TypeFieldDescriptionprotected TreeCellEditor
DefaultTreeCellEditor.realEditor
Editor handling the editing.Methods in javax.swing.tree that return TreeCellEditorModifier and TypeMethodDescriptionprotected TreeCellEditor
DefaultTreeCellEditor.createTreeCellEditor()
This is invoked if aTreeCellEditor
is not supplied in the constructor.Constructors in javax.swing.tree with parameters of type TreeCellEditorModifierConstructorDescriptionDefaultTreeCellEditor
(JTree tree, DefaultTreeCellRenderer renderer, TreeCellEditor editor) Constructs aDefaultTreeCellEditor
object for aJTree
using the specified renderer and the specified editor.