1 17 18 package org.apache.geronimo.common.propertyeditor; 19 20 import java.beans.PropertyEditorSupport ; 21 22 29 public class TextPropertyEditorSupport extends PropertyEditorSupport { 30 35 protected TextPropertyEditorSupport(Object source) { 36 super(source); 37 } 38 39 42 protected TextPropertyEditorSupport() { 43 super(); 44 } 45 46 52 public void setAsText(String value) { 53 setValue(value); 54 } 55 } 56 | Popular Tags |