1 22 package org.jboss.util.propertyeditor; 23 24 import java.beans.PropertyEditorSupport ; 25 26 32 public class TextPropertyEditorSupport extends PropertyEditorSupport  33 { 34 protected TextPropertyEditorSupport(final Object source) 35 { 36 super(source); 37 } 38 39 protected TextPropertyEditorSupport() 40 { 41 super(); 42 } 43 44 49 public void setAsText(final String text) 50 { 51 setValue(text); 52 } 53 } 54 | Popular Tags |