List of usage examples for java.beans PropertyEditorSupport subclass-usage
From source file org.codehaus.groovy.grails.web.binding.TimeZoneEditor.java
/** * A Property editor for converting instances of java.util.TimeZone. * * @author Graeme Rocher */ public class TimeZoneEditor extends PropertyEditorSupport {
From source file org.ualerts.fixed.InetAddressEditor.java
/** * A {@code PropertyEditor} for an {@link InetAddress}. * * @author Carl Harris */ public class InetAddressEditor extends PropertyEditorSupport {
From source file org.ualerts.fixed.MacAddressEditor.java
/** * A {@code PropertyEditor} for a {@link MacAddress}. * * @author Carl Harris */ public class MacAddressEditor extends PropertyEditorSupport {
From source file org.tonguetied.web.CountryCodeSupport.java
/**
* Support class to map enum {@link CountryCode} to a string key in the web
* tier. This class is used for rendering purposes.
*
* @author bsion
*
From source file org.tonguetied.web.PermissionSupport.java
/**
* Support class to map enum {@link Permission} to a string key in the web tier.
* This class is used for rendering purposes.
*
* @author bsion
*
From source file org.tonguetied.web.LanguageCodeSupport.java
/**
* Support class to map enum {@link LanguageCode} to a string key in the web
* tier. This class is used for rendering purposes.
*
* @author bsion
*
From source file edu.sampleu.demo.kitchensink.UITestPropertyEditor.java
/** * @author Kuali Rice Team (rice.collab@kuali.org) */ public class UITestPropertyEditor extends PropertyEditorSupport implements Serializable { private static final long serialVersionUID = -4113846709722954737L;
From source file org.tonguetied.web.TranslationStateSupport.java
/**
* Support class to map enum {@link TranslationState} to a string key in the web
* tier. This class is used for rendering purposes.
*
* @author bsion
*
From source file org.openmrs.module.tribe.TribeEditor.java
public class TribeEditor extends PropertyEditorSupport { private Log log = LogFactory.getLog(this.getClass()); public TribeEditor() { }
From source file org.openmrs.propertyeditor.FormEditor.java
/**
* Allows for serializing/deserializing an object to a string so that Spring knows how to pass
* an object back and forth through an html form or other medium. <br>
* <br>
* In version 1.9, added ability for this to also retrieve objects by uuid
*