FormOperations.java
2.19 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:
* com.adobe.service.FileDataBuffer
*/
package com.adobe.document.xmlform;
import com.adobe.document.xmlform.FormPackage.ExportException;
import com.adobe.document.xmlform.FormPackage.InvalidConfigurationException;
import com.adobe.document.xmlform.FormPackage.InvalidSOMExpressionException;
import com.adobe.document.xmlform.FormPackage.InvalidTemplateException;
import com.adobe.document.xmlform.FormPackage.InvalidXDCException;
import com.adobe.document.xmlform.FormPackage.NoTemplateException;
import com.adobe.document.xmlform.FormPackage.PacketNotFoundException;
import com.adobe.document.xmlform.FormPackage.RenderException;
import com.adobe.document.xmlform.InvalidPacketNameException;
import com.adobe.document.xmlform.InvalidXDPException;
import com.adobe.document.xmlform.NameValuePair;
import com.adobe.document.xmlform.ReturnStatusHolder;
import com.adobe.service.FileDataBuffer;
public interface FormOperations {
public void setConfigValue(String var1, String var2) throws InvalidConfigurationException, InvalidSOMExpressionException;
public void setConfigValues(NameValuePair[] var1) throws InvalidConfigurationException, InvalidSOMExpressionException;
public String getConfigValue(String var1) throws InvalidSOMExpressionException;
public FileDataBuffer render(ReturnStatusHolder var1) throws NoTemplateException, InvalidXDCException, RenderException, InvalidTemplateException;
public FileDataBuffer renderAs(String var1, ReturnStatusHolder var2) throws NoTemplateException, InvalidXDCException, RenderException, InvalidTemplateException;
public int getPageCount();
public FileDataBuffer getMessages();
public void clearMessages();
public void importPackets(FileDataBuffer var1, String[] var2) throws InvalidXDPException, InvalidPacketNameException;
public FileDataBuffer exportXDP(String[] var1) throws ExportException, PacketNotFoundException, InvalidPacketNameException;
public FileDataBuffer exportXML(String var1) throws ExportException, PacketNotFoundException, InvalidPacketNameException;
public String[] getPacketList();
public boolean isPacketPresent(String var1);
}