Example usage for java.beans PropertyEditorSupport subclass-usage

List of usage examples for java.beans PropertyEditorSupport subclass-usage

Introduction

In this page you can find the example usage for java.beans PropertyEditorSupport subclass-usage.

Usage

From source file it.cilea.osd.jdyna.utils.ConfigurazioneAlberoClassificatorioEditor.java

public class ConfigurazioneAlberoClassificatorioEditor extends java.beans.PropertyEditorSupport {
    /** My gateway to business logic */
    private IPersistenceClassificationService applicationService;

    /** The logger */
    private final static Log log = LogFactory.getLog(ConfigurazioneAlberoClassificatorioEditor.class);

From source file it.cilea.osd.jdyna.utils.ConfigurazioneTipologiaProprietaEditor.java

public class ConfigurazioneTipologiaProprietaEditor<TP extends PropertiesDefinition>
        extends java.beans.PropertyEditorSupport {
    /** My gateway to business logic */
    private IPersistenceDynaService applicationService;

    /** Model Class */

From source file org.pentaho.platform.plugin.services.security.userrole.memory.PentahoUserMapEditor.java

/**
 * Brought over from spring-security 3.2.5, as this class no longer exists in spring-security 4.1
 * @see https://github.com/spring-projects/spring-security/blob/3.2.5.RELEASE/core/src/main/java/org/springframework/security/core/userdetails/memory/UserMapEditor.java
 */
public class PentahoUserMapEditor extends PropertyEditorSupport {

From source file it.cilea.osd.jdyna.editor.ClassificazionePropertyEditor.java

public class ClassificazionePropertyEditor extends java.beans.PropertyEditorSupport {
    /** My gateway to business logic */
    private IPersistenceClassificationService applicationService;

    /** The logger */
    private final static Log log = LogFactory.getLog(ClassificazionePropertyEditor.class);

From source file it.cilea.osd.jdyna.utils.ConfigurazioneClassificazioneEditor.java

public class ConfigurazioneClassificazioneEditor extends java.beans.PropertyEditorSupport {
    /** My gateway to business logic */
    private IPersistenceClassificationService applicationService;

    /** The logger */
    private final static Log log = LogFactory.getLog(ConfigurazioneClassificazioneEditor.class);

From source file it.cilea.osd.jdyna.editor.SoggettoPropertyEditor.java

public class SoggettoPropertyEditor extends java.beans.PropertyEditorSupport {
    /** My gateway to business logic */
    private IPersistenceSubjectService applicationService;

    /** The logger */
    private final static Log log = LogFactory.getLog(SoggettoPropertyEditor.class);

From source file org.synyx.hades.extensions.beans.DomainClassPropertyEditor.java

/**
 * Generic {@link PropertyEditor} to map entities handled by a
 * {@link GenericDao} to their id's and vice versa.
 * 
 * @author Oliver Gierke
 */

From source file org.springframework.core.io.support.ResourceArrayPropertyEditor.java

/**
 * Editor for {@link org.springframework.core.io.Resource} arrays, to
 * automatically convert {@code String} location patterns
 * (e.g. {@code "file:C:/my*.txt"} or {@code "classpath*:myfile.txt"})
 * to {@code Resource} array properties. Can also translate a collection
 * or array of location patterns into a merged Resource array.

From source file no.abmu.questionnaire.propertyeditors.MuseumHovedOmraadeEditor.java

/**
 * MuseumHovedOmraadeEditor.
 *
 * @author Jens.Vindvad@abm-utvikling.no
 * @author $Author: jens $
 * @version $Rev: 15539 $

From source file org.sakaiproject.metaobj.shared.mgt.IdListCustomEditor.java

public class IdListCustomEditor extends PropertyEditorSupport implements TypedPropertyEditor {
    protected final transient Log logger = LogFactory.getLog(getClass());

    private IdManager idManager = null;

    /**