FileDocCategorySizeDatePackage
CollectionStateManager.javaAPI DocJBoss 4.2.12326Fri Jul 13 21:02:32 BST 2007org.jboss.aspects.versioned

CollectionStateManager

public abstract class CollectionStateManager extends StateManager implements Externalizable
author
Bill Burke
version
$Revision: 57186 $

Fields Summary
protected HashMap
methodMap
Constructors Summary
protected CollectionStateManager()

protected CollectionStateManager(org.jboss.util.id.GUID guid, long timeout, HashMap methodMap)

      super(guid, timeout);
      this.methodMap = methodMap;
   
Methods Summary
public abstract java.util.HashMapgetMethodMap()

public java.lang.reflect.MethodisManagerMethod(java.lang.reflect.Method method)

      try
      {
         long hash = org.jboss.aop.util.MethodHashing.methodHash(method);
         return (Method)methodMap.get(new Long(hash));
      }
      catch (Exception ex)
      {
         throw new RuntimeException(ex);
      }
   
public java.lang.reflect.MethodisManagerMethod(long hash)

      return (Method)methodMap.get(new Long(hash));
   
public voidreadExternal(java.io.ObjectInput in)

      super.readExternal(in);
   
public voidwriteExternal(java.io.ObjectOutput out)

      super.writeExternal(out);