fr.inria.oadymppac.utils
Interface ObjectManager

All Known Implementing Classes:
ObjectManagerImpl

public interface ObjectManager

Author:
raf TODO To change the template for this generated type comment go to Window - Preferences - Java - Code Generation - Code and Comments

Field Summary
static int INVALID
           
 
Method Summary
 int add(java.lang.Object element)
           
 int getCount()
          Return the number of variables in the manager.
 java.lang.Object getFromIndex(int index)
           
 java.lang.Object getFromKey(java.lang.Object key)
           
 int getIndex(java.lang.Object key)
           
 Properties getOwner()
          Get the value of solver.
 java.util.Iterator iterator()
          Return the iterator on all the variables.
 void setOwner(Properties owner)
          Set the value of solver.
 

Field Detail

INVALID

public static final int INVALID
See Also:
Constant Field Values
Method Detail

getOwner

public Properties getOwner()
Get the value of solver.

Returns:
value of solver.

setOwner

public void setOwner(Properties owner)
Set the value of solver.


getCount

public int getCount()
Return the number of variables in the manager.


iterator

public java.util.Iterator iterator()
Return the iterator on all the variables.


add

public int add(java.lang.Object element)

getFromIndex

public java.lang.Object getFromIndex(int index)

getIndex

public int getIndex(java.lang.Object key)

getFromKey

public java.lang.Object getFromKey(java.lang.Object key)