- Timestamp:
- 07/15/13 16:46:11 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/branches/coolemall/src/simulator/workload/reader/xmlJob/QcgXmlJobReader.java
r477 r1131 12 12 13 13 14 import org.qcg.broker.schemas.jobdesc.QcgJob;15 14 16 15 /** … … 20 19 */ 21 20 22 public class QcgXmlJobReader implements XMLJobReader< QcgJob> {21 public class QcgXmlJobReader implements XMLJobReader<org.qcg.broker.schemas.jobdesc.Job> { 23 22 24 23 protected static Unmarshaller unmarshaller; … … 65 64 } 66 65 67 public QcgJob read() throws IOException {66 public org.qcg.broker.schemas.jobdesc.Job read() throws IOException { 68 67 69 68 String s = readRaw(); 70 69 StringReader reader = new StringReader(s); 71 QcgJob job = null;70 org.qcg.broker.schemas.jobdesc.Job job = null; 72 71 73 72 try { 74 73 75 job = ( QcgJob) unmarshaller.unmarshal(reader);74 job = (org.qcg.broker.schemas.jobdesc.Job) unmarshaller.unmarshal(reader); 76 75 77 76 } catch (MarshalException e) {
Note: See TracChangeset
for help on using the changeset viewer.