Home | History | Annotate | Download | only in cardemulation

Lines Matching defs:group

16  * The AidGroup class represents a group of Application Identifiers (AIDs).
26 * The maximum number of AIDs that can be present in any one group.
39 * @param aids The list of AIDs present in the group
40 * @param category The category of this group, e.g. {@link CardEmulation#CATEGORY_PAYMENT}
44 throw new IllegalArgumentException("No AIDS in AID group.");
47 throw new IllegalArgumentException("Too many AIDs in AID group.");
73 * @return the category of this AID group
80 * @return the list of AIDs in this group
134 AidGroup group = null;
149 Log.d(TAG, "Ignoring <aid> tag while not in group");
151 } else if (tagName.equals("aid-group")) {
154 Log.e(TAG, "<aid-group> tag without valid category");
162 if (tagName.equals("aid-group") && inGroup && aids.size() > 0) {
163 group = new AidGroup(aids, category);
169 return group;
173 out.startTag(null, "aid-group");
180 out.endTag(null, "aid-group");