diff options
author | Jeff Hamilton <jham@android.com> | 2010-12-05 21:45:22 -0600 |
---|---|---|
committer | Jeff Hamilton <jham@android.com> | 2010-12-05 21:50:29 -0600 |
commit | c1576ad627d3d2b2d3c0764c605ebbf3ddc24401 (patch) | |
tree | 0ab7340e3372106c52a3556553711348abd7588d /core/java/android/nfc | |
parent | 3d524e562606e7994ede3429b37937f40f94cd41 (diff) | |
download | frameworks_base-c1576ad627d3d2b2d3c0764c605ebbf3ddc24401.zip frameworks_base-c1576ad627d3d2b2d3c0764c605ebbf3ddc24401.tar.gz frameworks_base-c1576ad627d3d2b2d3c0764c605ebbf3ddc24401.tar.bz2 |
Update the docs to clarify the ordering constraints.
Change-Id: Ib3932e637a675c875b9ed3482826a150b845a385
Diffstat (limited to 'core/java/android/nfc')
-rw-r--r-- | core/java/android/nfc/Tag.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/java/android/nfc/Tag.java b/core/java/android/nfc/Tag.java index 4d9e635..04304dd 100644 --- a/core/java/android/nfc/Tag.java +++ b/core/java/android/nfc/Tag.java @@ -113,6 +113,11 @@ public class Tag implements Parcelable { /** * Returns technologies present in the tag that this implementation understands, * or a zero length array if there are no supported technologies on this tag. + * + * The elements of the list are guaranteed be one of the constants defined in + * {@link TagTechnology}. + * + * The ordering of the returned array is undefined and should not be relied upon. */ public int[] getTechnologyList() { return Arrays.copyOf(mTechList, mTechList.length); |