protected PropertyEditor<T> createEditor() { return new PrimitiveTypeEditor<T>(myClass); }
public PropertyEditor<Double> getEditor() { if (myEditor == null) { myEditor = new PrimitiveTypeEditor<Double>(Double.class); } return myEditor; }