summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/graphical/IOffice.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/graphical/IOffice.java')
-rw-r--r--qadevOOo/runner/graphical/IOffice.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/qadevOOo/runner/graphical/IOffice.java b/qadevOOo/runner/graphical/IOffice.java
index e3c892de109f..54d8cc24fea4 100644
--- a/qadevOOo/runner/graphical/IOffice.java
+++ b/qadevOOo/runner/graphical/IOffice.java
@@ -22,27 +22,22 @@ public interface IOffice
{
/**
* start an Office, if need
- * @throws graphical.OfficeException
*/
public void start() throws OfficeException;
/**
* Load a document by it's Name
- * @param Name
- * @throws graphical.OfficeException
*/
public void load(String Name) throws OfficeException;
/**
* Create a postscript file in the DOC_COMPARATOR_OUTPUT_DIR directory from a loaded document
- * @throws graphical.OfficeException
*/
public void storeAsPostscript() throws OfficeException;
/**
* Close the background office
- * @throws graphical.OfficeException
*/
public void close() throws OfficeException;
}