Package org.nfctools.ndef.wkt

Examples of org.nfctools.ndef.wkt.WellKnownRecordConfig


  }

  public static void registerWellKnownRecord(RecordType recordType, Class<? extends WellKnownRecord> recordClass,
      WellKnownRecordPayloadEncoder payloadEncoder, WellKnownRecordPayloadDecoder payloadDecoder) {
    WellKnownRecordConfig config = new WellKnownRecordConfig(recordType, recordClass, payloadEncoder,
        payloadDecoder);
    ndefRecordDecoder.registerWellKnownRecordConfig(config);
    ndefRecordEncoder.registerWellKnownRecordConfig(config);
  }
View Full Code Here

TOP

Related Classes of org.nfctools.ndef.wkt.WellKnownRecordConfig

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.