XFARectangleNode.java
2.51 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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* scala.ScalaObject
* scala.reflect.ScalaSignature
* scala.xml.Node
* scala.xml.NodeSeq
*/
package com.adobe.forms.layout;
import com.adobe.forms.layout.Border;
import com.adobe.forms.layout.Border$;
import com.adobe.forms.layout.Extent;
import com.adobe.forms.layout.Extent$;
import com.adobe.forms.layout.Rectangle;
import com.adobe.forms.layout.XFADrawNode;
import scala.ScalaObject;
import scala.reflect.ScalaSignature;
import scala.xml.Node;
import scala.xml.NodeSeq;
@ScalaSignature(bytes="\u0006\u0001\u00013A!\u0001\u0002\u0001\u0017\t\u0001\u0002LR!SK\u000e$\u0018M\\4mK:{G-\u001a\u0006\u0003\u0007\u0011\ta\u0001\\1z_V$(BA\u0003\u0007\u0003\u00151wN]7t\u0015\t9\u0001\"A\u0003bI>\u0014WMC\u0001\n\u0003\r\u0019w.\\\u0002\u0001'\r\u0001A\u0002\u0005\t\u0003\u001b9i\u0011AA\u0005\u0003\u001f\t\u00111\u0002\u0017$B\tJ\fwOT8eKB\u0011\u0011\u0003F\u0007\u0002%)\t1#A\u0003tG\u0006d\u0017-\u0003\u0002\u0016%\tY1kY1mC>\u0013'.Z2u\u0011!9\u0002A!A!\u0002\u0013A\u0012\u0001\u00028pI\u0016\u0004\"!\u0007\u000f\u000e\u0003iQ!a\u0007\n\u0002\u0007alG.\u0003\u0002\u001e5\t!aj\u001c3f\u0011\u0015y\u0002\u0001\"\u0001!\u0003\u0019a\u0014N\\5u}Q\u0011\u0011E\t\t\u0003\u001b\u0001AQa\u0006\u0010A\u0002aAq\u0001\n\u0001C\u0002\u0013\u0005Q%\u0001\u0005o_\u0012,G+\u001f9f+\u00051\u0003CA\u0014-\u001b\u0005A#BA\u0015+\u0003\u0011a\u0017M\\4\u000b\u0003-\nAA[1wC&\u0011Q\u0006\u000b\u0002\u0007'R\u0014\u0018N\\4\t\r=\u0002\u0001\u0015!\u0003'\u0003%qw\u000eZ3UsB,\u0007\u0005C\u00042\u0001\t\u0007I\u0011\t\u001a\u0002\r\u0015DH/\u001a8u+\u0005\u0019\u0004CA\u00075\u0013\t)$A\u0001\u0004FqR,g\u000e\u001e\u0005\u0007o\u0001\u0001\u000b\u0011B\u001a\u0002\u000f\u0015DH/\u001a8uA!9\u0011\b\u0001b\u0001\n\u0003Q\u0014!\u0003:fGR\fgn\u001a7f+\u0005Y\u0004CA\u0007=\u0013\ti$AA\u0005SK\u000e$\u0018M\\4mK\"1q\b\u0001Q\u0001\nm\n!B]3di\u0006tw\r\\3!\u0001")
public class XFARectangleNode
extends XFADrawNode
implements ScalaObject {
private final String nodeType = "rectangle";
private final Extent extent;
private final Rectangle rectangle;
public String nodeType() {
return this.nodeType;
}
public Extent extent() {
return this.extent;
}
public Rectangle rectangle() {
return this.rectangle;
}
public XFARectangleNode(Node node) {
super(node);
this.extent = Extent$.MODULE$.apply((NodeSeq)node);
this.rectangle = new Rectangle(this.extent(), Border$.MODULE$.apply((NodeSeq)node));
}
}