Back to project page RejsekortReader.
The source code is released under:
GNU General Public License
If you think the Android project RejsekortReader listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package info.rejsekort.reader.rkf.blocks; /*w ww. j a va 2 s. c o m*/ import info.rejsekort.reader.rkf.datatypes.DataType; import info.rejsekort.reader.rkf.datatypes.RKFInteger; import info.rejsekort.reader.rkf.datatypes.ByteString; import info.rejsekort.reader.rkf.datatypes.MoneyAmount24; public class TCPUDynamicv6Block extends InterpretedBlock { public RKFInteger mPurseTransactionNumber; public MoneyAmount24 mValue; public ByteString mXXX; public TCPUDynamicv6Block(byte[] bits) { super("TCPUDynamicv6", bits); mPurseTransactionNumber = new RKFInteger(16, true); mValue = new MoneyAmount24(24, true); mXXX = new ByteString(216, true); mFields = new DataType[] { mPurseTransactionNumber, mValue, mXXX }; mFieldNames = new String[] { "PurseTransactionNumber", "Value", "XXX" }; interpretBlock(); } }