Revision 10539 branches/v10/libraries/libDwg/src/com/iver/cit/jdwglib/dwg/objects/DwgSeqend.java

View differences:

DwgSeqend.java
43 43
 */
44 44
public class DwgSeqend extends DwgObject {
45 45
	
46
	/**
47
	 * Read a Seqend in the DWG format Version 15
48
	 * 
49
	 * @param data Array of unsigned bytes obtained from the DWG binary file
50
	 * @param offset The current bit offset where the value begins
51
	 * @throws Exception If an unexpected bit value is found in the DWG file. Occurs
52
	 * 		   when we are looking for LwPolylines.
53
	 */
54
	public void readDwgSeqendV15(int[] data, int offset) throws Exception {
55
		int bitPos = offset;
56
		bitPos = readObjectHeaderV15(data, bitPos);
57
		bitPos = readObjectTailV15(data, bitPos);
46
	public DwgSeqend(int index) {
47
		super(index);
48
		// TODO Auto-generated constructor stub
58 49
	}
50
	public Object clone(){
51
		DwgSeqend obj = new DwgSeqend(index);
52
		this.fill(obj);
53
		return obj;
54
	}
55
	
56
	protected void fill(DwgObject obj){
57
		super.fill(obj);
58
		//DwgSeqend myObj = (DwgSeqend)obj;
59

  
60
	}
61

  
59 62
}

Also available in: Unified diff