HTMLRenderResult$.java
1.64 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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* scala.None
* scala.None$
* scala.Option
* scala.ScalaObject
* scala.Serializable
* scala.Some
* scala.Tuple8
* scala.runtime.AbstractFunction8
*/
package com.adobe.forms.service.impl;
import com.adobe.forms.model.XFATemplate;
import com.adobe.forms.service.impl.HTMLRenderResult;
import scala.None;
import scala.Option;
import scala.ScalaObject;
import scala.Serializable;
import scala.Some;
import scala.Tuple8;
import scala.runtime.AbstractFunction8;
public final class HTMLRenderResult$
extends AbstractFunction8
implements ScalaObject,
Serializable {
public static final HTMLRenderResult$ MODULE$;
public static {
new com.adobe.forms.service.impl.HTMLRenderResult$();
}
public final String toString() {
return "HTMLRenderResult";
}
public Option unapply(HTMLRenderResult x$0) {
return x$0 == null ? None..MODULE$ : new Some((Object)new Tuple8((Object)x$0.firstPage(), (Object)x$0.restOfThePages(), (Object)x$0.hiddenObjPages(), (Object)x$0.formDom(), (Object)x$0.localeSet(), (Object)x$0.internalCss(), (Object)x$0.version(), (Object)x$0.template()));
}
public HTMLRenderResult apply(String firstPage, String restOfThePages, String hiddenObjPages, String formDom, String localeSet, String internalCss, String version, XFATemplate template2) {
return new HTMLRenderResult(firstPage, restOfThePages, hiddenObjPages, formDom, localeSet, internalCss, version, template2);
}
public Object readResolve() {
return MODULE$;
}
private HTMLRenderResult$() {
MODULE$ = this;
}
}