diff options
| author | tkellner <tkellner@174cde9d-5d70-4d2a-aa98-46368bc2aaf7> | 2013-04-10 19:41:13 +0000 | 
|---|---|---|
| committer | tkellner <tkellner@174cde9d-5d70-4d2a-aa98-46368bc2aaf7> | 2013-04-10 19:41:13 +0000 | 
| commit | 83a392a2cbe0e1c3233306a98e21ddf86300095c (patch) | |
| tree | 3e5a26a227fa05786b90a3d9764914f47df580ff /pdf-over-gui/src | |
| parent | b98833eb205e42eb98a6ebfb4e4d9dbc23b3a9a6 (diff) | |
| download | pdf-over-83a392a2cbe0e1c3233306a98e21ddf86300095c.tar.gz pdf-over-83a392a2cbe0e1c3233306a98e21ddf86300095c.tar.bz2 pdf-over-83a392a2cbe0e1c3233306a98e21ddf86300095c.zip | |
Get rid of javadoc warning
git-svn-id: https://joinup.ec.europa.eu/svn/pdf-over/trunk@447 174cde9d-5d70-4d2a-aa98-46368bc2aaf7
Diffstat (limited to 'pdf-over-gui/src')
| -rw-r--r-- | pdf-over-gui/src/main/java/at/asit/pdfover/gui/MainWindow.java | 16 | 
1 files changed, 7 insertions, 9 deletions
| diff --git a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/MainWindow.java b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/MainWindow.java index 18cabc86..8769c09b 100644 --- a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/MainWindow.java +++ b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/MainWindow.java @@ -106,7 +106,7 @@ public class MainWindow {  	/**  	 * Default constructor -	 *  +	 *  	 * @param stateMachine  	 *            The main workflow  	 */ @@ -121,7 +121,7 @@ public class MainWindow {  	/**  	 * Sets top level composite for stack layout -	 *  +	 *  	 * @param ctrl  	 */  	public void setTopControl(Control ctrl) { @@ -149,7 +149,7 @@ public class MainWindow {  	/**  	 * Gets the container composite -	 *  +	 *  	 * @return the container composite  	 */  	public Composite getContainer() { @@ -158,8 +158,7 @@ public class MainWindow {  	/**  	 * Open the window. -	 *  -	 * @wbp.parser.entryPoint +	 *  	 */  	public void open() {  		createContents(); @@ -177,14 +176,13 @@ public class MainWindow {  		this.btn_position.setText(Messages.getString("main.position")); //$NON-NLS-1$  		this.btn_position.setToolTipText(Messages.getString("main.position")); //$NON-NLS-1$ -		  		this.btn_sign.setText(Messages.getString("main.signature")); //$NON-NLS-1$  		this.btn_sign.setToolTipText(Messages.getString("main.signature")); //$NON-NLS-1$  		this.btn_end.setText(Messages.getString("main.done")); //$NON-NLS-1$  		this.btn_end.setToolTipText(Messages.getString("main.done")); //$NON-NLS-1$ -		 +  		Control ctrl = this.stack.topControl;  		if (ctrl instanceof StateComposite) {  			if (!ctrl.isDisposed()) { @@ -193,7 +191,7 @@ public class MainWindow {  			}  		}  	} -	 +  	/**  	 * Create contents of the window.  	 */ @@ -405,7 +403,7 @@ public class MainWindow {  			this.mainBarFormData.bottom = new FormAttachment(0, 0);  			this.containerFormData.top = new FormAttachment(0, 10);  		} -		 +  		this.getShell().getDisplay().update();  		this.mainbar.layout(true, true);  		this.mainbar.redraw(); | 
