102103104105106107108109110111
int type = tag; switch (type) { case IMAGE_ATTRIBUTE: return new ImageAttribute(data); } return new UserAttributeSubpacket(type, data); }
106107108109110111112113114115
15161718192021
if (imageData == null) { throw new IllegalArgumentException("attempt to set null image"); } list.add(new ImageAttribute(imageType, imageData)); }