Methods Summary |
---|
public void | _parseDetails(java.nio.ByteBuffer content)
name = IsoTypeReader.readString(content);
location = IsoTypeReader.readString(content);
|
protected void | getContent(java.nio.ByteBuffer byteBuffer)
byteBuffer.put(Utf8.convert(name));
byteBuffer.put((byte) 0);
byteBuffer.put(Utf8.convert(location));
byteBuffer.put((byte) 0);
|
protected long | getContentSize()
return Utf8.utf8StringLengthInBytes(name) + 1 + Utf8.utf8StringLengthInBytes(location) + 1;
|
public java.lang.String | getLocation()
return location;
|
public java.lang.String | getName()
return name;
|
public java.lang.String | toString()
return "DataEntryUrlBox[name=" + getName() + ";location=" + getLocation() + "]";
|