SVGTransformer$.java
1.29 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* scala.ScalaObject
*/
package com.adobe.forms.transformer.impl;
import scala.ScalaObject;
public final class SVGTransformer$
implements ScalaObject {
public static final SVGTransformer$ MODULE$;
private final String Z;
private final String M;
private final String L;
private final String C;
private final String A;
private final String SP;
private final String Black;
private final String White;
public static {
new com.adobe.forms.transformer.impl.SVGTransformer$();
}
public String Z() {
return this.Z;
}
public String M() {
return this.M;
}
public String L() {
return this.L;
}
public String C() {
return this.C;
}
public String A() {
return this.A;
}
public String SP() {
return this.SP;
}
public String Black() {
return this.Black;
}
public String White() {
return this.White;
}
private SVGTransformer$() {
MODULE$ = this;
this.Z = "0";
this.M = "M";
this.L = "L";
this.C = "C";
this.A = "A";
this.SP = " ";
this.Black = "black";
this.White = "white";
}
}