net.percederberg.mib.type
Class TypeAdapter

java.lang.Object
  |
  +--net.percederberg.mib.type.TypeAdapter
All Implemented Interfaces:
TypeConverter

public abstract class TypeAdapter
extends java.lang.Object
implements TypeConverter

An empty implementation of the TypeConverter interface.

Version:
1.1
Author:
Per Cederberg, per@percederberg.net

Constructor Summary
TypeAdapter()
           
 
Method Summary
 void createCompound(java.util.Vector symbols)
          Called for composed types.
 void createEnumeratedInteger(java.util.Vector labels, java.util.Vector values)
          Called for integer types that may only have one of an enumerated set of values.
 void createInteger()
          Called for integer types.
 void createString()
          Called for string types.
 void createVector(Type elementType)
          Called for vector types.
 void transferDefaultValue(int value)
          Called for types having a default value.
 void transferDefaultValue(java.lang.String value)
          Called for types having a default value.
 void transferNameAlias(java.lang.String name)
          Called to report a type name alias for this type.
 void transferReadable(boolean readable)
          Called to set the status of whether or not that data is readable from the data layer.
 void transferSizeLimits(int minLength, int maxLength)
          Called for types having size limits associated with them.
 void transferValueLimits(int minValue, int maxValue)
          Called for integer types having value limits associated with them.
 void transferWriteable(boolean writeable)
          Called to set the status of whether or not that data is writable to the data layer.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TypeAdapter

public TypeAdapter()
Method Detail

createInteger

public void createInteger()
Called for integer types.
Specified by:
createInteger in interface TypeConverter

createEnumeratedInteger

public void createEnumeratedInteger(java.util.Vector labels,
                                    java.util.Vector values)
Called for integer types that may only have one of an enumerated set of values.
Specified by:
createEnumeratedInteger in interface TypeConverter
Parameters:
labels - a vector with the string labels
values - a vector with the integer values

createString

public void createString()
Called for string types.
Specified by:
createString in interface TypeConverter

createVector

public void createVector(Type elementType)
Called for vector types.
Specified by:
createVector in interface TypeConverter
Parameters:
elementType - the vector element type

createCompound

public void createCompound(java.util.Vector symbols)
Called for composed types.
Specified by:
createCompound in interface TypeConverter
Parameters:
symbols - a vector with the symbols that compose the type

transferNameAlias

public void transferNameAlias(java.lang.String name)
Called to report a type name alias for this type. This method is called once for each type symbol referenced from the type. The order will be the reverse, i.e. the inner-most name will be reported first.
Specified by:
transferNameAlias in interface TypeConverter
Parameters:
name - the alias nam

transferValueLimits

public void transferValueLimits(int minValue,
                                int maxValue)
Called for integer types having value limits associated with them.
Specified by:
transferValueLimits in interface TypeConverter
Parameters:
minValue - the minimum value
maxValue - the maximum value

transferSizeLimits

public void transferSizeLimits(int minLength,
                               int maxLength)
Called for types having size limits associated with them. Typically this can be either strings or arrays.
Specified by:
transferSizeLimits in interface TypeConverter
Parameters:
minLength - the minimum length, or -1 for none
maxLength - the maximum length, or -1 for none

transferReadable

public void transferReadable(boolean readable)
Called to set the status of whether or not that data is readable from the data layer.
Specified by:
transferReadable in interface TypeConverter
Parameters:
readable - true if readable, false otherwise

transferWriteable

public void transferWriteable(boolean writeable)
Called to set the status of whether or not that data is writable to the data layer.
Specified by:
transferWriteable in interface TypeConverter
Parameters:
writeable - true if writeable, false otherwise

transferDefaultValue

public void transferDefaultValue(java.lang.String value)
Called for types having a default value.
Specified by:
transferDefaultValue in interface TypeConverter
Parameters:
value - a string value or a label, depending on context

transferDefaultValue

public void transferDefaultValue(int value)
Called for types having a default value.
Specified by:
transferDefaultValue in interface TypeConverter
Parameters:
value - an integer value