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

com.qa.framework.bean.Function Maven / Gradle / Ivy

There is a newer version: 2.5
Show newest version
package com.qa.framework.bean;

/**
 * Created by apple on 15/11/23.
 */
public class Function {
    private String clsName;
    private String methodName;

    /**
     * Gets cls name.
     *
     * @return the cls name
     */
    public String getClsName() {
        return clsName;
    }

    /**
     * Sets cls name.
     *
     * @param clsName the cls name
     */
    public void setClsName(String clsName) {
        this.clsName = clsName;
    }

    /**
     * Gets method name.
     *
     * @return the method name
     */
    public String getMethodName() {
        return methodName;
    }

    /**
     * Sets method name.
     *
     * @param methodName the method name
     */
    public void setMethodName(String methodName) {
        this.methodName = methodName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy