Added `getTag()` and `getData()` and made instance variables private
This commit is contained in:
parent
24d56c93a9
commit
96e755d3cc
|
@ -3,8 +3,8 @@ module tristanable.encoding;
|
|||
public final class DataMessage
|
||||
{
|
||||
|
||||
public ulong tag;
|
||||
public byte[] data;
|
||||
private ulong tag;
|
||||
private byte[] data;
|
||||
|
||||
public static DataMessage decode(byte[] bytes)
|
||||
{
|
||||
|
@ -43,4 +43,14 @@ public final class DataMessage
|
|||
|
||||
return messageData;
|
||||
}
|
||||
|
||||
public byte[] getData()
|
||||
{
|
||||
return data;
|
||||
}
|
||||
|
||||
public ulong getTag()
|
||||
{
|
||||
return tag;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue