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.
Java Source Code
package info.rejsekort.reader.rkf.blocks;
/*fromwww.java2s.com*/import info.rejsekort.reader.rkf.datatypes.DataType;
import info.rejsekort.reader.rkf.datatypes.ByteString;
publicclass TCDI3Block extends InterpretedBlock {
public ByteString mAIDPIX11;
public ByteString mAIDPIX12;
public ByteString mAIDPIX13;
public ByteString mAIDPIX14;
public ByteString mAIDPIX15;
public ByteString mChecksum;
public TCDI3Block(byte[] bits) {
super("TCDI3", bits);
mAIDPIX11 = new ByteString(24, true);
mAIDPIX12 = new ByteString(24, true);
mAIDPIX13 = new ByteString(24, true);
mAIDPIX14 = new ByteString(24, true);
mAIDPIX15 = new ByteString(24, true);
mChecksum = new ByteString(8, true);
mFields = new DataType[] {
mAIDPIX11,
mAIDPIX12,
mAIDPIX13,
mAIDPIX14,
mAIDPIX15,
mChecksum
};
mFieldNames = new String[] {
"AIDPIX11",
"AIDPIX12",
"AIDPIX13",
"AIDPIX14",
"AIDPIX15",
"Checksum"
};
interpretBlock();
}
}