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

com.github.tankist88.carpenter.generator.dto.ProviderNextPartInfo Maven / Gradle / Ivy

package com.github.tankist88.carpenter.generator.dto;

import com.github.tankist88.carpenter.generator.dto.unit.ClassExtInfo;

import java.io.Serializable;
import java.util.Set;

public class ProviderNextPartInfo implements Serializable {
    private String className;
    private Set methods;

    public String getClassName() {
        return className;
    }

    public void setClassName(String className) {
        this.className = className;
    }

    public Set getMethods() {
        return methods;
    }

    public void setMethods(Set methods) {
        this.methods = methods;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy