Home | History | Annotate | Download | only in vcard

Lines Matching refs:imData

318     public static class ImData {
325 public ImData(final int protocol, final String customProtocol, final int type,
336 if (!(obj instanceof ImData)) {
339 ImData imData = (ImData)obj;
340 return (type == imData.type && protocol == imData.protocol
341 && (customProtocol != null ? customProtocol.equals(imData.customProtocol) :
342 (imData.customProtocol == null))
343 && (data != null ? data.equals(imData.data) : (imData.data == null))
344 && isPrimary == imData.isPrimary);
474 private List<ImData> mImList;
673 mImList = new ArrayList<ImData>();
675 mImList.add(new ImData(protocol, customProtocol, type, propValue, isPrimary));
1249 for (ImData imData : mImList) {
1253 builder.withValue(Im.TYPE, imData.type);
1254 builder.withValue(Im.PROTOCOL, imData.protocol);
1255 builder.withValue(Im.DATA, imData.data);
1256 if (imData.protocol == Im.PROTOCOL_CUSTOM) {
1257 builder.withValue(Im.CUSTOM_PROTOCOL, imData.customProtocol);
1259 if (imData.isPrimary) {
1497 public final List<ImData> getImList() {