Java 类org.simpleframework.xml.transform.StringArrayTransform 实例源码

项目:simplexml    文件:ArrayTransform.java   
/**
 * Constructor for the <code>PrimitiveArrayTransform</code> object.
 * This is used to create a transform that will create primitive
 * arrays and populate the values of the array with values from a
 * comma separated list of individula values for the entry type.
 * 
 * @param delegate this is used to perform individual transforms
 * @param entry this is the entry component type for the array
 */
public ArrayTransform(Transform delegate, Class entry) {
   this.split = new StringArrayTransform();
   this.delegate = delegate;
   this.entry = entry;
}
项目:simple-xml    文件:ArrayTransform.java   
/**
 * Constructor for the <code>PrimitiveArrayTransform</code> object.
 * This is used to create a transform that will create primitive
 * arrays and populate the values of the array with values from a
 * comma separated list of individula values for the entry type.
 * 
 * @param delegate this is used to perform individual transforms
 * @param entry this is the entry component type for the array
 */
public ArrayTransform(Transform delegate, Class entry) {
   this.split = new StringArrayTransform();
   this.delegate = delegate;
   this.entry = entry;
}