Added new method to class Element: insertInto(Element element)

This commit is contained in:
Robert Vokac 2023-09-28 13:02:08 +02:00
parent 67e7035219
commit cff2d808b0
No known key found for this signature in database
GPG Key ID: 693D30BEE3329055

View File

@ -217,4 +217,8 @@ public class Element implements XmlTypeI, Buildable {
public Elements getElements() {
return elements;
}
public void insertInto(Element element) {
element.add(this);
}
}