All Packages Class Hierarchy This Package Previous Next Index
Class parameter.ParameterStore
java.lang.Object
|
+----parameter.ParameterStore
- public class ParameterStore
- extends Object
- implements Store
This class implements a Store for Parameters using
java.util.Vector.
Specific class of meant-to-be-generic class java.util.Vector.
This class really should be a subclass of java.util.Vector,
but most members of java.util.Vector are final.
- Version:
- $Revision: 1.3 $
-
list
-
-
ParameterStore()
-
-
add(Parameter)
-
-
add(StoreElement)
- This Store should work on Parameters instead of StoreElements,
but method add(StoreElement) is in the interface this class
implements.
-
at(int)
-
-
elements()
- This method is here because it is specified in the interface
Store.
-
findName(String)
-
-
first()
-
-
getDescriptiveString()
-
-
last()
-
-
parameters()
-
-
removeAll()
-
-
removeAt(int)
-
-
size()
-
-
toString()
-
list
private Vector list
ParameterStore
public ParameterStore()
add
public void add(Parameter c)
add
public void add(StoreElement item)
- This Store should work on Parameters instead of StoreElements,
but method add(StoreElement) is in the interface this class
implements.
at
public Parameter at(int index)
first
public Parameter first()
removeAt
public void removeAt(int index)
removeAll
public void removeAll()
size
public int size()
parameters
public Enumeration parameters()
last
public Parameter last()
elements
public Enumeration elements()
- This method is here because it is specified in the interface
Store. Given that this store only works with parameters, it
makes more sense to name this method parameters(). This method
just refers to parameters() for its result.
findName
public Parameter findName(String name)
getDescriptiveString
public String getDescriptiveString()
toString
public String toString()
- Overrides:
- toString in class Object
All Packages Class Hierarchy This Package Previous Next Index