LayoutNode.java
536 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.xfa.layout;
import com.adobe.xfa.Element;
import com.adobe.xfa.layout.BoxModelLayout;
public class LayoutNode
extends Element {
protected Element moFormComponent;
public LayoutNode(Element oFormModelNode) {
this.moFormComponent = oFormModelNode;
}
public LayoutNode(Element oFormModelNode, BoxModelLayout oBoxModel) {
this.moFormComponent = oFormModelNode;
}
public Element getFormNode() {
return this.moFormComponent;
}
}