1 package org.apache.ojb.broker; 2 3 7 public class Paper 8 extends BaseContentImpl 9 { 10 13 private String date; 14 15 18 private String author; 19 20 21 24 public String getAuthor() 25 { 26 return author; 27 } 28 29 32 public String getDate() 33 { 34 return date; 35 } 36 37 40 public void setAuthor(String author) 41 { 42 this.author = author; 43 } 44 45 48 public void setDate(String date) 49 { 50 this.date = date; 51 } 52 53 } 54 | Popular Tags |