Package net.rim.device.api.io.nfc.emulation

Examples of net.rim.device.api.io.nfc.emulation.VirtualISO14443Part4TypeATarget


    protected void startEmulationOfISO14443ATarget() {
        Utilities.log("XXXX NfcVirtTarg About to start ISO14443-A virtual emulation");
        try {
            // note that the ID parameter is not actually used by the API
            _virtualISO14443ATarget = new VirtualISO14443Part4TypeATarget(new NfcVirtTargListener(this),
                    Constants.MY_ISO_TARGET_ID, null);
            _virtualISO14443ATarget.startEmulation();
            Utilities.log("XXXX NfcVirtTarg ISO14443-A emulation started");
            _screen.logEvent("info:ISO14443-A emulation started");
View Full Code Here


    public void startISO14443AEmulation() {
        try {
            // Create an ISO 14443 Type A Target with an ID of 1234567 and no
            // historical bytes
            _isoAVirtualTarget =
                    new VirtualISO14443Part4TypeATarget(
                            new VirtualISOTargetListener(_screen), "1234567",
                            null);

            // Start the emulation
            _isoAVirtualTarget.startEmulation();
View Full Code Here

        mixer.setColor(0x7f7f7f);

        add(status = new LabelField(""));

        try {
            emulated = new VirtualISO14443Part4TypeATarget(this, "10451045",
                    null);
            log("created");
            emulated.startEmulation();
            log("emulating");
        } catch (NFCException e) {
View Full Code Here

TOP

Related Classes of net.rim.device.api.io.nfc.emulation.VirtualISO14443Part4TypeATarget

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.