View Javadoc
1 package org.hedwig.core; 2 import java.util.List; 3 import java.util.Map; 4 /*** 5 * @author Keith Gaddis 6 * 7 * enclosing_type 8 */ 9 public interface IEnvelope { 10 Map getAttributes(); 11 List getParts(); 12 String getAttribute(String name); 13 void addAttribute(String name, String value); 14 boolean isViewed(); 15 void setViewed(boolean unread); 16 }

This page was automatically generated by Maven