1 2 package org.objectweb.jac.samples.contacts; 3 4 import java.util.Date ; 5 6 public class Action { 7 String description; 8 Date date; 9 10 14 public Date getDate() { 15 return date; 16 } 17 18 22 public void setDate(Date v) { 23 this.date = v; 24 } 25 26 30 public String getDescription() { 31 return description; 32 } 33 34 38 public void setDescription(String v) { 39 this.description = v; 40 } 41 42 public Action(String description, Date date) { 43 this.description = description; 44 this.date = date; 45 } 46 47 } 48 49 | Popular Tags |