package org.jboss.util.propertyeditor; import java.beans.PropertyEditorSupport; // JBOSSHACK avoid class not found exceptions public class StringEditor extends PropertyEditorSupport { public String getJavaInitializationString() { return "\"" + getValue() + "\""; } public void setAsText(String text) { setValue(text); } }