xdgnjobs/ximple-dgnio/src/main/java/com/ximple/io/dgn7/Element.java
@@ -7,6 +7,7 @@ import java.nio.ByteOrder; import java.util.ArrayList; import java.util.List; import java.util.Arrays; import com.vividsolutions.jts.geom.Envelope; @@ -194,6 +195,20 @@ { } public ByteBuffer getRawBuffer() { return rawBuffer.asReadOnlyBuffer(); } public short[] getRawArray() { if (raw == null) return null; short[] result = new short[raw.length]; System.arraycopy(raw, 0, result, 0, raw.length); return result; } public static class Exception extends java.lang.Exception { public Exception()