// // Source code recreated from a .class file by IntelliJ IDEA // (powered by Fernflower decompiler) // package com.airport.util.parse; import org.jdom.Element; public class SubNode { private Element element; public SubNode(Element element) { this.element = element; } public Element getElement() { return this.element; } public void setElement(Element element) { this.element = element; } }