List of usage examples for java.beans PropertyEditorSupport subclass-usage
From source file org.apache.jmeter.testbeans.gui.ComboStringEditor.java
/**
* This class implements a property editor for possibly null String properties
* that supports custom editing (i.e.: provides a GUI component) based on a
* combo box.
* <p>
* The provided GUI is a combo box with:
From source file org.theospi.portfolio.presentation.model.impl.PresentationViewerCustomEditor.java
/**
* Created by IntelliJ IDEA.
* User: John Ellis
* Date: May 19, 2004
* Time: 2:23:28 PM
* To change this template use File | Settings | File Templates.
From source file org.gephi.filters.GenericPropertyEditor.java
public class GenericPropertyEditor extends PropertyEditorSupport { private Object val; @Override public void setValue(Object value) {
From source file org.jahia.services.uicomponents.bean.contentmanager.ColumnPropertyEditor.java
/**
*
* User: toto
* Date: May 10, 2010
* Time: 3:15:24 PM
*
From source file org.egov.infra.web.support.propertyeditor.JodaDateTimeEditor.java
public class JodaDateTimeEditor extends PropertyEditorSupport { private final boolean allowEmpty; private final String datePattern; public JodaDateTimeEditor(final String datePattern, final boolean allowEmpty) { this.allowEmpty = allowEmpty;
From source file org.codehaus.griffon.runtime.quartz.CustomTriggerFactoryBean.java
class StringEditor extends PropertyEditorSupport { @Override public void setValue(Object value) { super.setValue(value == null ? null : value.toString()); }
From source file grails.plugins.quartz.CustomTriggerFactoryBean.java
class StringEditor extends PropertyEditorSupport { @Override public void setValue(Object value) { super.setValue(value == null ? null : value.toString()); }