Example usage for org.springframework.core.convert Property Property

List of usage examples for org.springframework.core.convert Property Property

Introduction

In this page you can find the example usage for org.springframework.core.convert Property Property.

Prototype

public Property(Class<?> objectType, @Nullable Method readMethod, @Nullable Method writeMethod) 

Source Link

Usage

From source file:org.jdal.ui.bind.AbstractBinder.java

/**
 * @return Property for property binder//w  ww.j a  v  a 2s .  co m
 */
protected Property getProperty() {
    PropertyDescriptor pd = getPropertyDescriptor();
    return new Property(getModel().getClass(), pd.getReadMethod(), pd.getWriteMethod());
}