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

klass.model.meta.domain.dto.ClassifierDTO Maven / Gradle / Ivy

There is a newer version: 0.3.0
Show newest version
package klass.model.meta.domain.dto;

import java.time.*;
import java.util.*;


/**
 * Auto-generated by {@link cool.klass.generator.dto.DataTransferObjectsGenerator}
 */
public abstract class ClassifierDTO
        extends PackageableElementDTO
{
    private String name;

    private List superInterfaces;
    private List classifierModifiers;
    private List dataTypeProperties;
    private List projections;

    public String getName()
    {
        return this.name;
    }

    public void setName(String name)
    {
        this.name = name;
    }

    public List getSuperInterfaces()
    {
        return this.superInterfaces;
    }

    public void setSuperInterfaces(List superInterfaces)
    {
        this.superInterfaces = superInterfaces;
    }

    public List getClassifierModifiers()
    {
        return this.classifierModifiers;
    }

    public void setClassifierModifiers(List classifierModifiers)
    {
        this.classifierModifiers = classifierModifiers;
    }

    public List getDataTypeProperties()
    {
        return this.dataTypeProperties;
    }

    public void setDataTypeProperties(List dataTypeProperties)
    {
        this.dataTypeProperties = dataTypeProperties;
    }

    public List getProjections()
    {
        return this.projections;
    }

    public void setProjections(List projections)
    {
        this.projections = projections;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy