All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.ocean.rawsdk.util.SimplePropertyDescriptor Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
/**
 * 
 */
package com.alibaba.ocean.rawsdk.util;

import java.lang.reflect.Method;

/**
 * @author hongbang.hb
 *
 */
public class SimplePropertyDescriptor {

	private String name;
	private Method readMethod;
	private Class propertyType;

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public Method getReadMethod() {
		return readMethod;
	}

	public void setReadMethod(Method readMethod) {
		this.readMethod = readMethod;
	}

	public Class getPropertyType() {
		return propertyType;
	}

	public void setPropertyType(Class propertyType) {
		this.propertyType = propertyType;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy