FormOperations.java 2.19 KB
/*
 * 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);
}