Searched defs:techList (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/nfc/
H A DTag.java126 public Tag(byte[] id, int[] techList, Bundle[] techListExtras, int serviceHandle, argument
128 if (techList == null) {
132 mTechList = Arrays.copyOf(techList, techList.length);
133 mTechStringList = generateTechStringList(techList);
135 mTechExtras = Arrays.copyOf(techListExtras, techList.length);
148 * @param techList must not be null
152 public static Tag createMockTag(byte[] id, int[] techList, Bundle[] techListExtras) { argument
154 return new Tag(id, techList, techListExtras, 0, null);
157 private String[] generateTechStringList(int[] techList) { argument
[all...]

Completed in 36 milliseconds