1 6 package tests.jfun.parsec.rfc822; 7 8 13 public class Authentic { 14 private final String type; 15 private final boolean single; 16 17 20 public boolean isSingle() { 21 return single; 22 } 23 26 public String getType() { 27 return type; 28 } 29 33 Authentic(final String type, final boolean single) { 34 super(); 35 this.type = type; 36 this.single = single; 37 } 38 } 39 | Popular Tags |