Class DwgSectionOffset
- java.lang.Object
-
- org.hortonmachine.gears.io.dxfdwg.libs.dwg.DwgSectionOffset
-
public class DwgSectionOffset extends Object
The DwgSectionOffset class is useful to store the key of a DWG section with its seek (or offset) and with its size- Author:
- jmorell
-
-
Constructor Summary
Constructors Constructor Description DwgSectionOffset(String key, int seek, int size)Creates a new DwgSectionOffset object
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetKey()intgetSeek()voidsetKey(String key)voidsetSeek(int seek)
-
-
-
Constructor Detail
-
DwgSectionOffset
public DwgSectionOffset(String key, int seek, int size)
Creates a new DwgSectionOffset object- Parameters:
key- Section keyseek- Seeker or offset in the DWG file for this sectionsize- Size of this section
-
-