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

com.adrninistrator.javacg.dto.classes.ClassImplementsMethodInfo Maven / Gradle / Ivy

package com.adrninistrator.javacg.dto.classes;

import com.adrninistrator.javacg.dto.method.MethodArgReturnTypes;

import java.util.List;

/**
 * @author adrninistrator
 * @date 2021/6/21
 * @description: 类实现的接口,及类中的方法信息
 */
public class ClassImplementsMethodInfo {

    // 类实现的接口
    private final List interfaceNameList;

    // 类中的方法信息
    private final List methodWithArgsList;

    public ClassImplementsMethodInfo(List interfaceNameList, List methodWithArgsList) {
        this.interfaceNameList = interfaceNameList;
        this.methodWithArgsList = methodWithArgsList;
    }

    public List getInterfaceNameList() {
        return interfaceNameList;
    }

    public List getMethodWithArgsList() {
        return methodWithArgsList;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy