public LinkedList<XMLElement> getXMLElementList() {
LinkedList<XMLElement> xmlElementList = new LinkedList<XMLElement>();
XMLElement xmlElement = new XMLElement(NAME);
if (this.instnr != null) {
XMLAttribute xmlAttribute = new XMLAttribute("instnr", this.instnr);
xmlElement.getXMLAttributeList().add(xmlAttribute);
}
if (this.kind != null) {
XMLAttribute xmlAttribute = new XMLAttribute("kind", this.kind.name());
xmlElement.getXMLAttributeList().add(xmlAttribute);
}
if (this.nr != null) {
XMLAttribute xmlAttribute = new XMLAttribute("nr", this.nr);
xmlElement.getXMLAttributeList().add(xmlAttribute);
}
if (this.absnr != null) {
XMLAttribute xmlAttribute = new XMLAttribute("absnr", this.absnr);
xmlElement.getXMLAttributeList().add(xmlAttribute);
}
if (this.aid != null) {
XMLAttribute xmlAttribute = new XMLAttribute("aid", this.aid);
xmlElement.getXMLAttributeList().add(xmlAttribute);
}
boolean isEmpty = true;
xmlElement.setEmpty(isEmpty);
xmlElementList.add(xmlElement);