/** * 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; }