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

gr.gousiosg.javacg.dto.ClassInterfaceMethodInfo Maven / Gradle / Ivy

The newest version!
package gr.gousiosg.javacg.dto;

import java.util.List;

/**
 * @author adrninistrator
 * @date 2021/6/21
 * @description:
 */

public class ClassInterfaceMethodInfo {

    private List interfaceNameList;

    private List methodWithArgsList;

    public List getInterfaceNameList() {
        return interfaceNameList;
    }

    public void setInterfaceNameList(List interfaceNameList) {
        this.interfaceNameList = interfaceNameList;
    }

    public List getMethodWithArgsList() {
        return methodWithArgsList;
    }

    public void setMethodWithArgsList(List methodWithArgsList) {
        this.methodWithArgsList = methodWithArgsList;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy