XFALeafNode.java
2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* scala.Option
* scala.ScalaObject
* scala.reflect.ScalaSignature
* scala.xml.Node
* scala.xml.NodeSeq
*/
package com.adobe.forms.layout;
import com.adobe.forms.layout.XFANode;
import scala.Option;
import scala.ScalaObject;
import scala.reflect.ScalaSignature;
import scala.xml.Node;
import scala.xml.NodeSeq;
/*
* This class specifies class file version 49.0 but uses Java 6 signatures. Assumed Java 6.
*/
@ScalaSignature(bytes="\u0006\u0001Y2Q!\u0001\u0002\u0002\u0002-\u00111\u0002\u0017$B\u0019\u0016\fgMT8eK*\u00111\u0001B\u0001\u0007Y\u0006Lx.\u001e;\u000b\u0005\u00151\u0011!\u00024pe6\u001c(BA\u0004\t\u0003\u0015\tGm\u001c2f\u0015\u0005I\u0011aA2p[\u000e\u00011c\u0001\u0001\r!A\u0011QBD\u0007\u0002\u0005%\u0011qB\u0001\u0002\b1\u001a\u000bej\u001c3f!\t\tB#D\u0001\u0013\u0015\u0005\u0019\u0012!B:dC2\f\u0017BA\u000b\u0013\u0005-\u00196-\u00197b\u001f\nTWm\u0019;\t\u0011]\u0001!\u0011!Q\u0001\na\tAA\\8eKB\u0011\u0011\u0004H\u0007\u00025)\u00111DE\u0001\u0004q6d\u0017BA\u000f\u001b\u0005\u0011qu\u000eZ3\t\u000b}\u0001A\u0011\u0001\u0011\u0002\rqJg.\u001b;?)\t\t#\u0005\u0005\u0002\u000e\u0001!)qC\ba\u00011!9A\u0005\u0001b\u0001\n\u0003)\u0013aB2pYN\u0004\u0018M\\\u000b\u0002MA\u0019\u0011cJ\u0015\n\u0005!\u0012\"AB(qi&|g\u000e\u0005\u0002\u0012U%\u00111F\u0005\u0002\u0004\u0013:$\bBB\u0017\u0001A\u0003%a%\u0001\u0005d_2\u001c\b/\u00198!\u0011\u001dy\u0003A1A\u0005\u0002\u0015\nqA]8xgB\fg\u000e\u0003\u00042\u0001\u0001\u0006IAJ\u0001\te><8\u000f]1oA!91\u0007\u0001b\u0001\n\u0003)\u0013\u0001C5t\u0011\u0016\fG-\u001a:\t\rU\u0002\u0001\u0015!\u0003'\u0003%I7\u000fS3bI\u0016\u0014\b\u0005")
public abstract class XFALeafNode
extends XFANode
implements ScalaObject {
private final Option<Object> colspan;
private final Option<Object> rowspan;
private final Option<Object> isHeader;
public Option<Object> colspan() {
return this.colspan;
}
public Option<Object> rowspan() {
return this.rowspan;
}
public Option<Object> isHeader() {
return this.isHeader;
}
public XFALeafNode(Node node) {
super(node);
this.colspan = this.readNodeAsInt("colspan", this.readNodeAsInt$default$2());
this.rowspan = this.readNodeAsInt("rowspan", this.readNodeAsInt$default$2());
this.isHeader = this.readNodeAsInt("RH", this.readNodeAsInt$default$2());
}
}