toxgene.interfaces
Class ToXgeneCdataDescriptor

java.lang.Object
  extended bytoxgene.interfaces.ToXgeneCdataDescriptor

public class ToXgeneCdataDescriptor
extends java.lang.Object

Data structure that describes the CDATA generators available to ToXgene

Version:
0.1
Author:
Denilson Barbosa

Field Summary
 java.lang.String cdataClass
          This is the fully qualified name of the Java class that implements the CDATA descriptor.
 java.lang.String cdataName
          This is the name of the corresponding simpleType that appears in the templates.
 int maxLength
          This is the expected maximum length of instances of this type.
 int minLength
          This is the expected minimum length of instances of this type.
 
Constructor Summary
ToXgeneCdataDescriptor()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

cdataName

public java.lang.String cdataName
This is the name of the corresponding simpleType that appears in the templates.


cdataClass

public java.lang.String cdataClass
This is the fully qualified name of the Java class that implements the CDATA descriptor.


minLength

public int minLength
This is the expected minimum length of instances of this type. ToXgene will throw an exception if an instance shorter than this value is returned by the cdata generator; unless the value is set to -1, which tells ToXgene not to worry about the length of instances of this type.


maxLength

public int maxLength
This is the expected maximum length of instances of this type. ToXgene will truncate instances of this type which are longer than this value; unless the value is set to -1, which tells ToXgene not to worry about the length of instances of this type.

Constructor Detail

ToXgeneCdataDescriptor

public ToXgeneCdataDescriptor()