ObjectDictionary

public class ObjectDictionary extends java.util.Dictionary

implements aspcomp.Enumerator,

aspcomp.Map

{

public int getCount();

//

// java.util.Dictionary Methods

//

public Object get(Object key) throws AspComponentException;

public Object put(Object key, Object value) throws AspComponentException;

public int size();

public boolean isEmpty();

public Enumeration keys();

public Enumeration elements();

public Object remove(Object key) throws AspComponentException;

//

// aspcomp.Map Methods

//

public int getType(String name);

public boolean getBoolean(String name) throws ClassCastException;

public byte getByte(String name) throws ClassCastException;

public short getShort(String name) throws ClassCastException;

public char getChar(String name) throws ClassCastException;

public int getInt(String name) throws ClassCastException;

public long getLong(String name) throws ClassCastException;

public float getFloat(String name) throws ClassCastException;

public double getDouble(String name) throws ClassCastException;

public String getString(String name) throws ClassCastException;

public Date getDate(String name) throws ClassCastException;

public Object getObject(String name) throws ClassCastException;

public Variant getVariant(String name) throws ClassCastException;

public void setObject(String name, Object o) throws AspComponentException;

public void setBoolean(String name,boolean b) throws AspComponentException;

public void setByte(String name,byte b) throws AspComponentException;

public void setShort(String name,short v) throws AspComponentException;

public void setInt(String name, int v) throws AspComponentException;

public void setFloat(String name,float v) throws AspComponentException;

public void setDouble(String name,double v) throws AspComponentException;

public void setString(String name,String v) throws AspComponentException;

public void setDate(String name, Date v) throws AspComponentException;

public void setVariant(String name, Variant var) throws AspComponentException;

//

// aspcomp.Enumerator Methods

//

public void reset();

//

// java.util.Enumeration Methods

//

public boolean hasMoreElements();

public Object nextElement() throws NoSuchElementException,

ClassCastException;

//

// java.lang.Cloneable Method

//

public Object clone();

}