summaryrefslogtreecommitdiff
path: root/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/StateMachine.java
diff options
context:
space:
mode:
authorJakob Heher <jakob.heher@iaik.tugraz.at>2022-07-06 12:33:33 +0200
committerJakob Heher <jakob.heher@iaik.tugraz.at>2022-07-06 12:33:33 +0200
commite4767bccc7324d4b61a334bf6c0558d0080045e2 (patch)
tree728a5df44f02ca10f760b979873c990cd4c0d265 /pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/StateMachine.java
parent3422e5eb2819f5de304f25dc622f5284813bb9b4 (diff)
downloadpdf-over-e4767bccc7324d4b61a334bf6c0558d0080045e2.tar.gz
pdf-over-e4767bccc7324d4b61a334bf6c0558d0080045e2.tar.bz2
pdf-over-e4767bccc7324d4b61a334bf6c0558d0080045e2.zip
remove NON-NLS comments, cleanup whitespace
Diffstat (limited to 'pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/StateMachine.java')
-rw-r--r--pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/StateMachine.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/StateMachine.java b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/StateMachine.java
index 6075ffee..85539eb5 100644
--- a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/StateMachine.java
+++ b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/StateMachine.java
@@ -22,7 +22,7 @@ import at.asit.pdfover.gui.workflow.config.PersistentConfigProvider;
import at.asit.pdfover.gui.workflow.states.State;
/**
- *
+ *
*/
public interface StateMachine {
/**
@@ -54,29 +54,29 @@ public interface StateMachine {
* @return the PDF Signer
*/
public PDFSigner getPDFSigner();
-
+
/**
* Get the Status
* @return the Status
*/
public Status getStatus();
-
+
/**
* Gets the GUI provider
* @return the GUI provider
*/
public GUIProvider getGUIProvider();
-
+
/**
* Jump to specific state
- *
+ *
* Sets the state machine state this method should be used to let the user jump
* around between states. This Method also resets certain properties defined
* by later states then the target state.
- *
+ *
* Example: Usually the MainWindow allows the user to jump to the states:
* DataSourceSelectionState, PositioningState and BKUSelectionState
- *
+ *
* @param state the state to jump to
*/
public void jumpToState(State state);
@@ -86,7 +86,7 @@ public interface StateMachine {
* Calls the next state.
*/
public void update();
-
+
/**
* Update state machine from other thread
* Calls the next state within the main thread
@@ -97,10 +97,10 @@ public interface StateMachine {
* Exit state machine execution
*/
public void exit();
-
+
/**
* Gets the command line arguments
- *
+ *
* @return the command line arguments
*/
public String[] getCmdArgs();