Android Open Source - Android_NFC_FelicaEdit Nfc Tag






From Project

Back to project page Android_NFC_FelicaEdit.

License

The source code is released under:

Apache License

If you think the Android project Android_NFC_FelicaEdit 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

/*
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * http://www.apache.org/licenses/LICENSE-2.0
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License./* w  w  w.j a va  2 s .  c  o  m*/
 */

/*
 * ?package?????
 * kazzz ??????? nfc-felica(http://d.hatena.ne.jp/Kazzz/20110130/p1) ????????????????????????????????????
 * ??????????????????????????????????????????????????????????????????????????
 * ???????????MIFARE?,FeliCa?,NFC(NDEF)??????????????????????????????????????????????????????????????????
 */


/*
 * Changes
 * * 2011/2/5: k_morishita
 * ** net.kazzz.felica.lib.FeliCaLib.executeRaw() ????????????
 */


package jp.co.yumemi.nfc;

import jp.co.yumemi.rd.misc.Util;
import android.content.Intent;
import android.nfc.NfcAdapter;
import android.nfc.Tag;
import android.os.Parcelable;

public class NfcTag {
    static private final String TAG = "NfcTag";
    
    protected final Tag tag;
    public Tag getTag() {
        return tag;
    }

    public static final String TYPE_NULL = "NULL";
    public static final String TYPE_OTHER = "OTHER";
    public static final String TYPE_FELICA = "FeliCa";
    
    public NfcTag(Tag tag) {
        this.tag = tag;
    }

    public byte[] getId() {
        return tag.getId();
    }
    
    public void putTagService(Intent intent) {
        intent.putExtra(NfcAdapter.EXTRA_TAG, tag);
    }

    public String getType() {
        return TYPE_OTHER;
    }
    
    public String getTechListAsString() {
        return Util.getHexString(tag.getTechList());
    }
}

class NullNfcTag extends NfcTag {
    public NullNfcTag(Tag tag) {
        super(tag);
    }

    public String getType() {
        return TYPE_NULL;
    }
}




Java Source Code List

jp.co.yumemi.nfc.FelicaTag.java
jp.co.yumemi.nfc.NFCUtil.java
jp.co.yumemi.nfc.NfcException.java
jp.co.yumemi.nfc.NfcTag.java
jp.co.yumemi.nfc.PollingResponse.java
jp.co.yumemi.nfc.ReadResponse.java
jp.co.yumemi.nfc.TagFactory.java
jp.co.yumemi.rd.felicaedit.EditBlock.java
jp.co.yumemi.rd.felicaedit.FelicaEdit.java
jp.co.yumemi.rd.felicaedit.ServiceList.java
jp.co.yumemi.rd.felicaedit.SystemList.java
jp.co.yumemi.rd.misc.SimpleAlert.java
jp.co.yumemi.rd.misc.Util.java