* @return The OMGraphics value
* @exception IOException
* @since
*/
public OMGraphicList getOMGraphics() throws IOException {
OMGraphicList WV = new OMGraphicList();
isr.readLine();
while (true) {
String S = isr.readLine();
if (S == null)
break;
//System.out.println("E00 "+S);
if (S.startsWith("ARC"))
readARC();
else if (S.startsWith("LAB"))
readLAB();
else if (S.startsWith("IFO"))
readIFO();
else if (S.startsWith("LOG"))
readLOG();
else if (S.startsWith("PRJ"))
readPRJ();
else if (S.startsWith("CNT"))
readCNT();
else if (S.startsWith("PAL"))
readPAL();
else if (S.startsWith("SIN"))
readSIN();
else if (S.startsWith("TOL"))
readTOL();
else if (S.startsWith("TX7"))
readTX7();
else if (S.startsWith("EOS"))
break;
//System.out.println("E00 "+S+" fin");
}
if (labs != null) {
labs.setAppObject("LABS");
WV.add(labs);
}
if (arcs != null) {
arcs.setAppObject("ARCS");
WV.add(arcs);
}
if (tx7 != null) {
tx7.setAppObject("TX7");
WV.add(tx7);
}
return WV;
}