summaryrefslogtreecommitdiff
path: root/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/Status.java
diff options
context:
space:
mode:
authortkellner <tkellner@174cde9d-5d70-4d2a-aa98-46368bc2aaf7>2013-04-10 18:53:11 +0000
committertkellner <tkellner@174cde9d-5d70-4d2a-aa98-46368bc2aaf7>2013-04-10 18:53:11 +0000
commitb2968bef5d56723826cfe38f1fe5ab1d60aa79f3 (patch)
tree8bf68cf3b7c8a6d80d3338046110a6decd60fce2 /pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/Status.java
parent2e533b04ae8b232a50a83101692e20cda53696fb (diff)
downloadpdf-over-b2968bef5d56723826cfe38f1fe5ab1d60aa79f3.tar.gz
pdf-over-b2968bef5d56723826cfe38f1fe5ab1d60aa79f3.tar.bz2
pdf-over-b2968bef5d56723826cfe38f1fe5ab1d60aa79f3.zip
State Machine refactoring
git-svn-id: https://joinup.ec.europa.eu/svn/pdf-over/trunk@23 174cde9d-5d70-4d2a-aa98-46368bc2aaf7
Diffstat (limited to 'pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/Status.java')
-rw-r--r--pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/Status.java43
1 files changed, 42 insertions, 1 deletions
diff --git a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/Status.java b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/Status.java
index ff06286b..9af0b034 100644
--- a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/Status.java
+++ b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/Status.java
@@ -17,19 +17,60 @@ package at.asit.pdfover.gui.workflow;
import java.io.File;
+import at.asit.pdfover.gui.MainWindowBehavior;
import at.asit.pdfover.gui.workflow.states.BKUSelectionState;
+import at.asit.pdfover.gui.workflow.states.State;
import at.asit.pdfover.signator.SignaturePosition;
/**
- *
+ * Interface for persistent status of state machine
*/
public interface Status {
+ /**
+ * Sets the document
+ * @param document the document
+ */
public void setDocument(File document);
+
+ /**
+ * Gets the document
+ * @return the document
+ */
public File getDocument();
+ /**
+ * Sets the signature position
+ * @param position the position
+ */
public void setSignaturePosition(SignaturePosition position);
+
+ /**
+ * Gets the signature position
+ * @return the signature position
+ */
public SignaturePosition getSignaturePosition();
+ /**
+ * Sets the selected BKU
+ * @param bku the selected BKU
+ */
public void setBKU(BKUSelectionState.BKUs bku);
+
+ /**
+ * Gets the selected BKU
+ * @return the selected BKU
+ */
public BKUSelectionState.BKUs getBKU();
+
+ /**
+ * Gets the current state
+ * @return the current state
+ */
+ public State getCurrentState();
+
+ /**
+ * Gets the main window behavior
+ * @return the main window behavior
+ */
+ public MainWindowBehavior getBehavior();
}