agg.attribute.handler
Interface HandlerType

All Superinterfaces:
java.io.Serializable

public interface HandlerType
extends java.io.Serializable

This interface is implemented by Attribute Handlers; provides services for the Attribute Manager. It is used in the "SymbolTable".

See Also:
SymbolTable

Field Summary
static long serialVersionUID
           
 
Method Summary
 java.lang.Class<?> getClazz()
          Obtaining the actual class rather than just its textual representation.
 java.lang.String toString()
          Getting the string representation of this type.
 

Field Detail

serialVersionUID

static final long serialVersionUID
See Also:
Constant Field Values
Method Detail

toString

java.lang.String toString()
Getting the string representation of this type. Overrides the "toString()" method of the "Object" class.

Overrides:
toString in class java.lang.Object

getClazz

java.lang.Class<?> getClazz()
Obtaining the actual class rather than just its textual representation. The name is funny because getClass() is already defined in Object as a 'final' method.

Returns:
A class handle.