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

com.alipay.api.internal.mapping.AlipayFieldMethod Maven / Gradle / Ivy

The newest version!
/**
 * Alipay.com Inc.
 * Copyright (c) 2004-2015 All Rights Reserved.
 */
package com.alipay.api.internal.mapping;

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

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

    /**
     * 属性
     */
    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