Changeset 1131 for DCWoRMS/branches/coolemall/src/simulator/utils
- Timestamp:
- 07/15/13 16:46:11 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/branches/coolemall/src/simulator/utils/XsltTransformations.java
r490 r1131 162 162 int end = 0; 163 163 164 begin = xmlJob.indexOf(" appId=") + 7;164 begin = xmlJob.indexOf("id=") + 4; 165 165 end = xmlJob.indexOf("\"", begin); 166 166 String jobId = xmlJob.substring(begin, end); … … 178 178 end += 7; 179 179 String task = xmlJob.substring(begin, end); 180 tb = task.indexOf(" taskId=") + 8;180 tb = task.indexOf("id=") + 4; 181 181 te = task.indexOf("\"", tb); 182 182 taskId = task.substring(tb, te);
Note: See TracChangeset
for help on using the changeset viewer.