home *** CD-ROM | disk | FTP | other *** search
- package sun.beans.editors;
-
- import java.beans.PropertyEditorSupport;
-
- public class StringEditor extends PropertyEditorSupport {
- public String getJavaInitializationString() {
- return "\"" + ((PropertyEditorSupport)this).getValue() + "\"";
- }
-
- public void setAsText(String var1) {
- ((PropertyEditorSupport)this).setValue(var1);
- }
- }
-