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

eu.xenit.apix.dictionary.aspects.AspectDefinition Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
package eu.xenit.apix.dictionary.aspects;

import eu.xenit.apix.data.QName;
import java.util.List;

public class AspectDefinition {

    private QName name;
    private QName parent;
    private String title;
    private String description;
    private List properties;
    private List mandatoryAspects;

    public QName getName() {
        return name;
    }

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

    public QName getParent() {
        return parent;
    }

    public void setParent(QName parent) {
        this.parent = parent;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public List getProperties() {
        return properties;
    }

    public void setProperties(List properties) {
        this.properties = properties;
    }

    public List getMandatoryAspects() {
        return mandatoryAspects;
    }

    public void setMandatoryAspects(List mandatoryAspects) {
        this.mandatoryAspects = mandatoryAspects;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy