source: xssim/trunk/src/test/local/db/loader/TaskReader.java @ 104

Revision 104, 1.5 KB checked in by wojtekp, 13 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package test.local.db.loader;
2
3/**
4 *
5 * @author Marcin Krystek
6 *
7 */
8public class TaskReader extends StatsReader {
9
10        public TaskReader(StatsParser p) {
11                super(p);
12        }
13       
14        public String getJobID(){
15                return this.values[0];
16        }
17       
18        public String getTaskID(){
19                return this.values[1];
20        }
21       
22        public String getUserDN(){
23                return this.values[2];
24        }
25       
26        public String getResName(){
27                return this.values[3];
28        }
29       
30        public long getCpuCnt(){
31                return getAsLong(4);
32        }
33       
34        public long getExecStartDate(){
35                return getAsLong(5);
36        }
37       
38        public long getExecFinishDate(){
39                return getAsLong(6);
40        }
41       
42        public long getExecEndDate(){
43                return getAsLong(7);
44        }
45       
46        public long getGB_SubDate(){
47                return getAsLong(8);
48        }
49       
50        public long getLB_SubDate(){
51                return getAsLong(9);
52        }
53       
54        public long getCompletionTime(){
55                return getAsLong(10);
56        }
57       
58        public long getExecStartTime(){
59                return getAsLong(11);
60        }
61       
62        public long getExecutionTime(){
63                return getAsLong(12);
64        }
65       
66        public long getReadyTime(){
67                return getAsLong(13);
68        }
69       
70        public long getStartTime(){
71                return getAsLong(14);
72        }
73       
74        public long getFlowTime(){
75                return getAsLong(15);
76        }
77       
78        public long getWaitingTime(){
79                return getAsLong(16);
80        }
81       
82        public long getGQ_WaitTime(){
83                return getAsLong(17);
84        }
85       
86        public long getLateness(){
87                return getAsLong(18);
88        }
89       
90        public long getTardiness(){
91                return getAsLong(19);
92        }
93       
94        public long getReservStartDate(){
95                return getAsLong(20);
96        }
97       
98        public long getReservFinishDate(){
99                return getAsLong(21);
100        }
101       
102        public String getProcessorName(){
103                return this.values[22];
104        }
105       
106}
Note: See TracBrowser for help on using the repository browser.