public SectionHeader(ByteBuffer buf) throws IOException {
    byte[] nameBytes = new byte[8];
    buf.get(nameBytes);

    type = SectionType.valueOf(nameBytes);
    physicalAddress = buf.getInt();
    virtualAddress = buf.getInt();
    size = buf.getInt();
    dataOffset = buf.getInt();
    relocTableOffset = buf.getInt();
    lineNumberOffset = buf.getInt();
    relocTableSize = buf.getShort();
    lineNumberSize = buf.getShort();
    flags = buf.getInt();
  }
Example #2
0
 /**
  * @return the name of the map
  * @deprecated
  */
 @Deprecated
 public String getSectionUrl() {
   assert (type.equals(SectionType.URL));
   return value;
 }