|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
This interface defines functionality of a controlled vocabulary. The implementation is supposed to behave as a Java bean (regarding accessing vocabulary properties).
Each vocabulary consists of (usually many) vocabulary entries
which are represented by CandyEntries.
| Field Summary | |
static String |
CANDIES_NOT_SORTED
A property name. |
static String |
PROP_CASE_SENSITIVE
A property name. |
static String |
PROP_ENTRY_COUNT
A property name. |
static String |
PROP_VOCAB_DESC
A property name. |
static String |
PROP_VOCAB_NAME
A property name. |
static String |
PROP_VOCAB_VERSION
A property name. |
static String |
PROP_VOCABULARY
A property name. |
| Method Summary | |
boolean |
contains(String name)
It checks if a given entry exists in this vocabulary. |
void |
destroy()
It frees all resources related to this vocabulary. |
Enumeration |
getAllEntries()
It returns all available vocabulary entries. |
Enumeration |
getAllNames()
It return all names (entry identifiers) available in this vocabulary. |
int |
getCount()
It returns a number of entries contained in this vocabulary. |
String |
getDescription()
It returns a description of this vocabulary. |
CandyEntry |
getEntryByName(String name)
It returns a selected vocabulary entry. |
String |
getName()
It returns a name of this vocabulary. |
String |
getVersion()
It returns a vesrion of this vocabulary. |
boolean |
isCaseSensitive()
It returns true if the vocabulary entries should be considered as case-sensitive. |
| Methods inherited from interface java.beans.PropertyChangeListener |
propertyChange |
| Field Detail |
public static final String PROP_VOCAB_NAME
public static final String PROP_VOCAB_DESC
public static final String PROP_VOCAB_VERSION
public static final String PROP_CASE_SENSITIVE
public static final String PROP_ENTRY_COUNT
public static final String PROP_VOCABULARY
CandyVocabulary and
it can be used to set an entire vocabulary.
An implementation may use it together with an empty
constructor.
public static final String CANDIES_NOT_SORTED
A property name.
An implementation may use this boolean property to make sure that returned vocabulary entries are in the same order as they were read from its original source.
| Method Detail |
public boolean contains(String name)
throws CandyException
name - of a vocabulary entry to be checked
CandyException - if the vocabulary is suddenly not available
public CandyEntry getEntryByName(String name)
throws CandyException
name - a name of a vocabulary entry to be looked up
CandyException - when the given vocabulary entry does not existgetAllEntries
public Enumeration getAllEntries()
throws CandyException
CandyException - if the vocabulary is suddenly not availablegetEntryByName
public Enumeration getAllNames()
throws CandyException
CandyException - if the vocabulary is suddenly not available
public void destroy()
throws CandyException
CandyException - if the vocabulary is suddenly not available
public String getName()
throws CandyException
CandyFinder
instance who delivers this vocabulary.
CandyException
public String getDescription()
throws CandyException
CandyException
public String getVersion()
throws CandyException
CandyException
public int getCount()
throws CandyException
CandyException
public boolean isCaseSensitive()
throws CandyException
CandyException
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||