View Javadoc

1   /*
2    * $Id: TreeNode.java,v 1.3 2007/04/20 13:43:05 oeuillot Exp $
3    */
4   package org.rcfaces.core.item;
5   
6   import javax.faces.model.SelectItem;
7   
8   import org.rcfaces.core.component.TreeNodeComponent;
9   
10  /**
11   * 
12   * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
13   * @version $Revision: 1.3 $ $Date: 2007/04/20 13:43:05 $
14   */
15  public class TreeNode extends DefaultItem implements ITreeNode {
16  
17      private static final String REVISION = "$Revision: 1.3 $";
18  
19      private static final long serialVersionUID = -8687718500434714577L;
20  
21      public TreeNode() {
22      }
23  
24      public TreeNode(String label) {
25          super(label);
26      }
27  
28      public TreeNode(String label, String description, boolean disabled,
29              SelectItem items[]) {
30          super(label, description, disabled, items);
31      }
32  
33      public TreeNode(ITreeNode treeNode) {
34          super(treeNode);
35      }
36  
37      public TreeNode(TreeNodeComponent treeNodeComponent) {
38          super(treeNodeComponent);
39      }
40  }