1 29 package net.sourceforge.groboutils.pmti.v1.itf.impl; 30 31 import net.sourceforge.groboutils.pmti.v1.itf.IIssueRecord; 32 33 34 35 42 public class DefaultIssueRecord implements IIssueRecord 43 { 44 private String id; 45 private String desc; 46 47 48 public DefaultIssueRecord( String id, String desc ) 49 { 50 if (id == null) 51 { 52 throw new IllegalArgumentException ("no null arguments"); 53 } 54 this.id = id; 55 this.desc = desc; 56 } 57 58 59 62 public String getID() 63 { 64 return this.id; 65 } 66 67 68 public String getDescription() 69 { 70 return this.desc; 71 } 72 } 73 74 | Popular Tags |