Apply formatting
[proteocache.git] / datadb / compbio / beans / Total.java
index 3e819ed..64813ee 100644 (file)
@@ -6,21 +6,21 @@ package compbio.beans;
  * @param total
  *            total number of jobs for a day
  * @param totalOK
- *           number of jobs with execution status OK for a date
+ *            number of jobs with execution status OK for a date
  * @param totalStopped
- *                      number of jobs with execution status STOPPED for a date
+ *            number of jobs with execution status STOPPED for a date
  * @param totalError
- *           number of jobs with execution status Jpred ERROR for a date
+ *            number of jobs with execution status Jpred ERROR for a date
  * @param totalTimeOut
- *                      number of jobs with execution status TIMEDOUT for a date
+ *            number of jobs with execution status TIMEDOUT for a date
  */
 public class Total {
-       private long total;                                     
-       private long totalOK;                           
-       private long totalStopped;                      
-       private long totalError;                                
-       private long totalTimeOut;                      
-               
+       private long total;
+       private long totalOK;
+       private long totalStopped;
+       private long totalError;
+       private long totalTimeOut;
+
        public Total(long total, long totalOK, long totalStopped, long totalError, long totalTimeOut) {
                this.total = total;
                this.totalOK = totalOK;
@@ -28,7 +28,7 @@ public class Total {
                this.totalError = totalError;
                this.totalTimeOut = totalTimeOut;
        }
-       
+
        public void setTotal(long tot) {
                this.total = tot;
        }