source: trunk/gli/src/org/greenstone/gatherer/util/DictionaryTreeNode.java@ 4364

Last change on this file since 4364 was 4364, checked in by mdewsnip, 21 years ago

Fixed tabbing.

  • Property svn:keywords set to Author Date Id Revision
File size: 556 bytes
Line 
1package org.greenstone.gatherer.util;
2
3import javax.swing.tree.TreeNode;
4
5public interface DictionaryTreeNode {
6 /** Returns the child at the specified index in this node's child array. */
7 public TreeNode getChildAt(int index);
8 /** Returns the number of children of this node. */
9 public int getChildCount();
10 /** This method should always return the same key, regardless of the value of toString(). */
11 public String getKey();
12 /** Set the text shown by toString() to the given value. */
13 public void setText(String value);
14}
Note: See TracBrowser for help on using the repository browser.