SubNode.java
451 字节
//
// 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;
}
}