Class CategoryTreeItem
- java.lang.Object
-
- org.jfree.report.modules.gui.swing.preview.CategoryTreeItem
-
- All Implemented Interfaces:
java.lang.Comparable
public class CategoryTreeItem extends java.lang.Object implements java.lang.Comparable
Creation-Date: 01.12.2006, 20:01:32- Author:
- Thomas Morgner
-
-
Constructor Summary
Constructors Constructor Description CategoryTreeItem(ActionCategory category)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(CategoryTreeItem item)
int
compareTo(java.lang.Object o)
Compares this object with the specified object for order.ActionCategory
getCategory()
CategoryTreeItem[]
getChilds()
java.lang.String
getName()
CategoryTreeItem
getParent()
void
setParent(CategoryTreeItem parent)
-
-
-
Constructor Detail
-
CategoryTreeItem
public CategoryTreeItem(ActionCategory category)
-
-
Method Detail
-
getName
public java.lang.String getName()
-
getParent
public CategoryTreeItem getParent()
-
setParent
public void setParent(CategoryTreeItem parent)
-
getCategory
public ActionCategory getCategory()
-
add
public void add(CategoryTreeItem item)
-
getChilds
public CategoryTreeItem[] getChilds()
-
compareTo
public int compareTo(java.lang.Object o)
Compares this object with the specified object for order. Returns a negative integer, zero, or a positive integer as this object is less than, equal to, or greater than the specified object.- Specified by:
compareTo
in interfacejava.lang.Comparable
- Parameters:
o
- the Object to be compared.- Returns:
- a negative integer, zero, or a positive integer as this object is less than, equal to, or greater than the specified object.
- Throws:
java.lang.ClassCastException
- if the specified object's type prevents it from being compared to this Object.
-
-