All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class ants.wrapper.AutoNodeCache

java.lang.Object
   |
   +----ants.NodeCache
           |
           +----ants.wrapper.AutoNodeCache

public class AutoNodeCache
extends NodeCache
Node Cache with convenience functions for access The wrapper classes W_*.java and interface glue below should be automatically generated, but aren't yet! The "type signatures" used to indicate the contents of an object are pseudo-classfile: I = int, J = long, A = array (since [ isn't a valid in a name) Names are i1, i2, etc., for the first int, second int, etc. Only type permutations up to length 3 are supported! The base cases for int and long are covered by java.lang.Integer/Long.


Constructor Index

 o AutoNodeCache(Node, int, int)

Method Index

 o get(int)
 o get(int, int, long)
 o get(int, long)
 o get(long)
 o put(int, int, long, Object, int)
 o put(int, long, Object, int)
 o put(int, Object, int)
 o put(long, Object, int)

Constructors

 o AutoNodeCache
 public AutoNodeCache(Node owner,
                      int capacity,
                      int duration)

Methods

 o get
 public final synchronized Object get(int i)
 o put
 public final synchronized Object put(int i,
                                      Object value,
                                      int time)
 o get
 public final synchronized Object get(long l)
 o put
 public final synchronized Object put(long l,
                                      Object value,
                                      int time)
 o get
 public final synchronized Object get(int i1,
                                      long j1)
 o put
 public final synchronized Object put(int i1,
                                      long j1,
                                      Object value,
                                      int time)
 o get
 public final synchronized Object get(int i1,
                                      int i2,
                                      long j1)
 o put
 public final synchronized Object put(int i1,
                                      int i2,
                                      long j1,
                                      Object value,
                                      int time)

All Packages  Class Hierarchy  This Package  Previous  Next  Index