DJDoc v.1.0.0b-1

net.sf.djdoc.bo
Interface Item

All Superinterfaces:
java.lang.Comparable, Hittable
All Known Implementing Classes:
ItemEntity, ItemVO

public interface Item
extends Hittable

The instances of the Item interface represent "types" of Java APIs (i.e. interfaces, classes, exceptions, errors, enums, annotation types) documented with the Javadoc tool.


Nested Class Summary
static class Item.ItemType
          The ItemType enum enumerates the different types of Items.
 
Field Summary
 
Fields inherited from interface net.sf.djdoc.bo.Hittable
FAVORITE, NATURAL, RECENT
 
Method Summary
 java.lang.String getName()
          Getter method for this Item's name.
 Item.ItemType getType()
          Getter method for this Item's item type.
 
Methods inherited from interface net.sf.djdoc.bo.Hittable
getHitCount, getHitDate, hit, setHitCount, setHitDate
 
Methods inherited from interface java.lang.Comparable
compareTo
 

Method Detail

getName

java.lang.String getName()
Getter method for this Item's name.

Returns:
The name of this Item object

getType

Item.ItemType getType()
Getter method for this Item's item type.

Returns:
The item type of this Item object

DJDoc v.1.0.0b-1