Statistics
| Revision:

root / trunk / org.gvsig.dwg / org.gvsig.dwg.lib / src / main / java / org / gvsig / dwg / lib / readers / v15 / DwgSeqEndReader15.java @ 5

History | View | Annotate | Download (983 Bytes)

1
/*
2
 * Created on 25-ene-2007 by azabala
3
 *
4
 */
5
package org.gvsig.dwg.lib.readers.v15;
6

    
7
import org.gvsig.dwg.lib.CorruptedDwgEntityException;
8
import org.gvsig.dwg.lib.DwgObject;
9

    
10
/**
11
 * @author alzabord
12
 *
13
 * TODO To change the template for this generated type comment go to
14
 * Window - Preferences - Java - Code Style - Code Templates
15
 */
16
public class DwgSeqEndReader15 extends AbstractDwg15Reader{
17

    
18
        /* (non-Javadoc)
19
         * @see com.iver.cit.jdwglib.dwg.readers.IDwgObjectReader#readSpecificObj(int[], int, com.iver.cit.jdwglib.dwg.DwgObject)
20
         */
21
        //TODO Algunos objetos no aportan nada al head y tail
22
        //ver si quitarlo (o pasar la implementacion a la clase abstracta)
23
        public void readSpecificObj(int[] data, int offset, DwgObject dwgObj) throws RuntimeException, CorruptedDwgEntityException {
24
                int bitPos = offset;
25
                bitPos = headTailReader.readObjectHeader(data, bitPos, dwgObj);
26
                bitPos = headTailReader.readObjectTailer(data, bitPos, dwgObj);
27
        }
28
}