You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by pm...@apache.org on 2007/10/02 22:03:55 UTC

svn commit: r581369 - /geronimo/plugins/system-database/trunk/system-database-portlets/src/main/java/org/apache/geronimo/console/ajax/ProgressInfo.java

Author: pmcmahan
Date: Tue Oct  2 13:03:50 2007
New Revision: 581369

URL: http://svn.apache.org/viewvc?rev=581369&view=rev
Log:
formatting only

Modified:
    geronimo/plugins/system-database/trunk/system-database-portlets/src/main/java/org/apache/geronimo/console/ajax/ProgressInfo.java

Modified: geronimo/plugins/system-database/trunk/system-database-portlets/src/main/java/org/apache/geronimo/console/ajax/ProgressInfo.java
URL: http://svn.apache.org/viewvc/geronimo/plugins/system-database/trunk/system-database-portlets/src/main/java/org/apache/geronimo/console/ajax/ProgressInfo.java?rev=581369&r1=581368&r2=581369&view=diff
==============================================================================
--- geronimo/plugins/system-database/trunk/system-database-portlets/src/main/java/org/apache/geronimo/console/ajax/ProgressInfo.java (original)
+++ geronimo/plugins/system-database/trunk/system-database-portlets/src/main/java/org/apache/geronimo/console/ajax/ProgressInfo.java Tue Oct  2 13:03:50 2007
@@ -21,8 +21,7 @@
 import org.directwebremoting.annotations.RemoteProperty;
 
 @DataTransferObject
-public class ProgressInfo
-{
+public class ProgressInfo {
     public static final String PROGRESS_INFO_KEY = "progressinfokey";
     private int progressPercent = -1;
     private String mainMessage;
@@ -31,30 +30,30 @@
 
     @RemoteProperty
     public int getProgressPercent() {
-		return progressPercent;
-	}
+        return progressPercent;
+    }
 
-	public void setProgressPercent(int progressPercent) {
-		this.progressPercent = progressPercent;
-	}
-
-        @RemoteProperty
-	public String getMainMessage() {
-		return mainMessage;
-	}
-
-	public void setMainMessage(String mainMessage) {
-		this.mainMessage = mainMessage;
-	}
-
-        @RemoteProperty
-	public String getSubMessage() {
-		return subMessage;
-	}
-
-	public void setSubMessage(String subMessage) {
-		this.subMessage = subMessage;
-	}
+    public void setProgressPercent(int progressPercent) {
+        this.progressPercent = progressPercent;
+    }
+
+    @RemoteProperty
+    public String getMainMessage() {
+        return mainMessage;
+    }
+
+    public void setMainMessage(String mainMessage) {
+        this.mainMessage = mainMessage;
+    }
+
+    @RemoteProperty
+    public String getSubMessage() {
+        return subMessage;
+    }
+
+    public void setSubMessage(String subMessage) {
+        this.subMessage = subMessage;
+    }
 
     @RemoteProperty
     public boolean isFinished() {