use of org.apache.poi.hmef.attribute.TNEFMAPIAttribute in project poi by apache.
the class Attachment method addAttribute.
protected void addAttribute(TNEFAttribute attr) {
attributes.add(attr);
if (attr instanceof TNEFMAPIAttribute) {
TNEFMAPIAttribute tnefMAPI = (TNEFMAPIAttribute) attr;
mapiAttributes.addAll(tnefMAPI.getMAPIAttributes());
}
}
use of org.apache.poi.hmef.attribute.TNEFMAPIAttribute in project poi by apache.
the class HMEFMessage method processMessage.
void processMessage(InputStream inp) throws IOException {
// Build the attribute
TNEFAttribute attr = TNEFAttribute.create(inp);
messageAttributes.add(attr);
if (attr instanceof TNEFMAPIAttribute) {
TNEFMAPIAttribute tnefMAPI = (TNEFMAPIAttribute) attr;
mapiAttributes.addAll(tnefMAPI.getMAPIAttributes());
}
}
Aggregations