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

com.aiwiown.face.internal.mapping.ApiMethod Maven / Gradle / Ivy

There is a newer version: 3.0.9
Show newest version
/**
 * Alipay.com Inc. Copyright (c) 2004-2015 All Rights Reserved.
 */
package com.aiwiown.face.internal.mapping;

import java.lang.reflect.Field;
import java.lang.reflect.Method;

/**
 * @author jiehua
 * @version $Id: ApiMethod.java, v 0.1 2015-4-28 下午1:44:25 jiehua Exp $
 */
public class ApiMethod {

    /**
     * 属性
     */
    private Field field;

    /**
     * 方法
     */
    private Method method;

    /**
     * Getter method for property field.
     *
     * @return property value of field
     */
    public Field getField() {
        return field;
    }

    /**
     * Setter method for property field.
     *
     * @param field value to be assigned to property field
     */
    public void setField(Field field) {
        this.field = field;
    }

    /**
     * Getter method for property method.
     *
     * @return property value of method
     */
    public Method getMethod() {
        return method;
    }

    /**
     * Setter method for property method.
     *
     * @param method value to be assigned to property method
     */
    public void setMethod(Method method) {
        this.method = method;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy