1 17 18 package org.apache.geronimo.common.propertyeditor; 19 20 import java.util.Collection ; 21 import java.util.LinkedList ; 22 23 28 public class CollectionEditor extends AbstractCollectionEditor { 29 protected Collection createCollection() { 30 return new LinkedList (); 31 } 32 33 public void setValue(Object value) { 34 super.setValue((Collection )value); 35 } 36 } 37 | Popular Tags |