/**@class android.nfc.NfcManager @extends java.lang.Object High level manager used to obtain an instance of an {@link android.nfc.NfcAdapter}. <p> Use {@link android.content.Context#getSystemService(java.lang.String)} with {@link Context#NFC_SERVICE} to create an {@link android.nfc.NfcManager}, then call {@link #getDefaultAdapter} to obtain the {@link android.nfc.NfcAdapter}. <p> Alternately, you can just call the static helper {@link android.nfc.NfcAdapter#getDefaultAdapter(android.content.Context)}. <div class="special reference"> <h3>Developer Guides</h3> <p>For more information about using NFC, read the <a href="{@docRoot}guide/topics/nfc/index.html">Near Field Communication</a> developer guide.</p> </div> @see NfcAdapter#getDefaultAdapter(android.content.Context) */ var NfcManager = { /**Get the default NFC Adapter for this device. @return {Object {android.nfc.NfcAdapter}} the default NFC Adapter */ getDefaultAdapter : function( ) {}, };