eu.xenit.apix.dictionary.aspects.AspectDefinition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apix-interface Show documentation
Show all versions of apix-interface Show documentation
Xenit API-X Java interface
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