Interface SymbolPropertyTableDB
- All Known Implementing Classes:
SimpleSymbolPropertyTableDB
public interface SymbolPropertyTableDB
Database of
SymbolPropertyTable
objects.- Version:
- $Revision$
- Author:
- Martin Szugat
-
Method Summary
Modifier and TypeMethodDescriptionnames()
Returns the set of unique table names.int
Returns the number of symbol property tables in the database.Returns the table with the specified name.Returns an iterator overSymbolPropertyTable
objects.
-
Method Details
-
tableIterator
Returns an iterator overSymbolPropertyTable
objects.- Returns:
- a new iterator
-
numTables
int numTables()Returns the number of symbol property tables in the database.- Returns:
- the number of tables
-
names
Returns the set of unique table names.- Returns:
- a set containing strings
-
table
Returns the table with the specified name.- Parameters:
name
- the name of the table- Returns:
- the specified table
- Throws:
IllegalIDException
- if no symbol property table with the specified name could be found.NullPointerException
- ifname
isnull
.
-