mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
Fix one more javadoc error for Java 8
This commit is contained in:
parent
fabd9f6473
commit
0a65882eda
|
@ -52,9 +52,9 @@ public final class Contents {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A contact. Send a request to encode it as follows:
|
* A contact. Send a request to encode it as follows:
|
||||||
* <p/>
|
* {@code
|
||||||
* import android.provider.Contacts;
|
* import android.provider.Contacts;
|
||||||
* <p/>
|
*
|
||||||
* Intent intent = new Intent(Intents.Encode.ACTION);
|
* Intent intent = new Intent(Intents.Encode.ACTION);
|
||||||
* intent.putExtra(Intents.Encode.TYPE, CONTACT);
|
* intent.putExtra(Intents.Encode.TYPE, CONTACT);
|
||||||
* Bundle bundle = new Bundle();
|
* Bundle bundle = new Bundle();
|
||||||
|
@ -63,6 +63,7 @@ public final class Contents {
|
||||||
* bundle.putString(ContactsContract.Intents.Insert.EMAIL, "jenny@the80s.com");
|
* bundle.putString(ContactsContract.Intents.Insert.EMAIL, "jenny@the80s.com");
|
||||||
* bundle.putString(ContactsContract.Intents.Insert.POSTAL, "123 Fake St. San Francisco, CA 94102");
|
* bundle.putString(ContactsContract.Intents.Insert.POSTAL, "123 Fake St. San Francisco, CA 94102");
|
||||||
* intent.putExtra(Intents.Encode.DATA, bundle);
|
* intent.putExtra(Intents.Encode.DATA, bundle);
|
||||||
|
* }
|
||||||
*/
|
*/
|
||||||
public static final String CONTACT = "CONTACT_TYPE";
|
public static final String CONTACT = "CONTACT_TYPE";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue