Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.tripi.asp
Class AspCollection.ItemClass  view AspCollection.ItemClass download AspCollection.ItemClass.java

java.lang.Object
  extended bycom.tripi.asp.AspCollection.ItemClass
All Implemented Interfaces:
SimpleMap
Enclosing class:
AspCollection

public class AspCollection.ItemClass
extends java.lang.Object
implements SimpleMap

This class contains an interface back to the contents class


Field Summary
(package private)  AspCollection collection
          The AspCollection class this class is part of
 
Constructor Summary
AspCollection.ItemClass(AspCollection collection)
          Constructor of this sub-class.
 
Method Summary
 boolean containsKey(java.lang.Object key)
          This method returns true if the specified key exists in this collection, false otherwise.
 int Count()
          This ASP-accessible function obtains the number of elements stored in this application object.
 java.util.Enumeration elements()
          Obtains the elements in this AspCollection.
 java.lang.Object get(java.lang.Object obj)
          Obtains the value of data contained within the application object.
 java.util.Enumeration getKeys()
          Obtains the list of keys stored in this object.
 java.util.Enumeration keys()
          Obtains an enumeration of the keys in this collection.
 void put(java.lang.Object key, java.lang.Object value)
          Stores an objects into the application object.
 void Remove(java.lang.Object key)
          This ASP-accessible function removes the specified element from this application object.
 void RemoveAll()
          This ASP-accessible function removes all of the elements in the application object.
 int size()
          Obtains the size of this collection.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

collection

AspCollection collection
The AspCollection class this class is part of

Constructor Detail

AspCollection.ItemClass

public AspCollection.ItemClass(AspCollection collection)
Constructor of this sub-class.

Method Detail

get

public java.lang.Object get(java.lang.Object obj)
                     throws AspException
Obtains the value of data contained within the application object.

Specified by:
get in interface SimpleMap

put

public void put(java.lang.Object key,
                java.lang.Object value)
         throws AspException
Stores an objects into the application object.

Specified by:
put in interface SimpleMap

getKeys

public java.util.Enumeration getKeys()
                              throws AspException
Obtains the list of keys stored in this object. Used for foreach statements.

Specified by:
getKeys in interface SimpleMap

RemoveAll

public void RemoveAll()
               throws AspException
This ASP-accessible function removes all of the elements in the application object.


Remove

public void Remove(java.lang.Object key)
            throws AspException
This ASP-accessible function removes the specified element from this application object.


Count

public int Count()
          throws AspException
This ASP-accessible function obtains the number of elements stored in this application object.


containsKey

public boolean containsKey(java.lang.Object key)
                    throws AspException
This method returns true if the specified key exists in this collection, false otherwise.


keys

public java.util.Enumeration keys()
                           throws AspException
Obtains an enumeration of the keys in this collection.


elements

public java.util.Enumeration elements()
                               throws AspException
Obtains the elements in this AspCollection.


size

public int size()
         throws AspException
Obtains the size of this collection.