datapacket
Class ADataPacket

java.lang.Object
  extended by extvisitor.AExtVisitorHost<java.lang.Class<?>,ADataPacket>
      extended by datapacket.ADataPacket
All Implemented Interfaces:
IExtVisitorHost<java.lang.Class<?>,ADataPacket>, java.io.Serializable
Direct Known Subclasses:
DataPacket

public abstract class ADataPacket
extends AExtVisitorHost<java.lang.Class<?>,ADataPacket>

Abstract data packet that defines the use of a Class object as the index type. The type of data held by the data packet defines its type and thus what case it calls on its processing visitors.

Author:
Stephen Wong (c) 2010
See Also:
Serialized Form

Field Summary
private static long serialVersionUID
           
 
Constructor Summary
ADataPacket(java.lang.Class<?> c)
          Constructor for this abstract superclass
 
Method Summary
 
Methods inherited from class extvisitor.AExtVisitorHost
execute
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

serialVersionUID

private static final long serialVersionUID
See Also:
Constant Field Values
Constructor Detail

ADataPacket

public ADataPacket(java.lang.Class<?> c)
Constructor for this abstract superclass

Parameters:
c - A Class object to be used as the index value defining this type of data packet.