QJCC homepage

biz.chitec.quarterback.gjsa
Class ClassParsers.ValueHistoryStorageCP

java.lang.Object
  extended bybiz.chitec.quarterback.gjsa.ClassParsers.ValueHistoryStorageCP
All Implemented Interfaces:
ClassParser
Enclosing class:
ClassParsers

private static final class ClassParsers.ValueHistoryStorageCP
extends java.lang.Object
implements ClassParser

GJSA Class parser for ValueHistoryStorage


Constructor Summary
private ClassParsers.ValueHistoryStorageCP()
           
 
Method Summary
 java.lang.String getID()
          Returns a String ID for the object.
 java.lang.String obj2Str(java.lang.Object obj)
          This method should convert a given object into a string representation.
 java.lang.Object str2Obj(Str2ObjParamParser sopp)
          Converts a string representation into a Java object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ClassParsers.ValueHistoryStorageCP

private ClassParsers.ValueHistoryStorageCP()
Method Detail

obj2Str

public java.lang.String obj2Str(java.lang.Object obj)
Description copied from interface: ClassParser
This method should convert a given object into a string representation. It must retrun null if the object cannot be handled by this parser. Otherwise, it must return only the internal values of the object.

Specified by:
obj2Str in interface ClassParser
Parameters:
obj - Description of the Parameter
Returns:
Description of the Return Value

str2Obj

public java.lang.Object str2Obj(Str2ObjParamParser sopp)
Description copied from interface: ClassParser
Converts a string representation into a Java object. This method needs to create an object of its class and fill it with the values that are given through the Str2ObjParamParser. The ClassParser may use all of Str2ObjParamParser's internal methods, esp. parseObject() which may enter a recursive step.

Specified by:
str2Obj in interface ClassParser
Parameters:
sopp - Description of the Parameter
Returns:
Description of the Return Value

getID

public java.lang.String getID()
Description copied from interface: ClassParser
Returns a String ID for the object. The ID must be unique and should be short.

Specified by:
getID in interface ClassParser
Returns:
The iD value

QJCC homepage