KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > oddjob > values > types > MergeListProxy


1 /*
2  * (c) Rob Gordon 2005
3  */

4 package org.oddjob.values.types;
5
6
7 /**
8  * Acts as a proxy for lists where the elements in the list
9  * are themselves arrays or lists. FilesType is an example
10  * that needs this proxy.
11  *
12  * @auther Rob Gordon.
13  */

14 public class MergeListProxy extends ListType {
15
16     public MergeListProxy() {
17         setMerge(true);
18     }
19 }
20
Popular Tags