1 package org.apache.ojb.broker; 2 3 public class BookArticle extends Article implements java.io.Serializable  4 { 5 6 7 private String author; 8 9 private String isbn; 10 11 public BookArticle() 12 { 13 } 14 15 19 public String getAuthor() 20 { 21 return author; 22 } 23 24 28 public void setAuthor(String author) 29 { 30 this.author = author; 31 } 32 33 37 public String getIsbn() 38 { 39 return isbn; 40 } 41 42 46 public void setIsbn(String isbn) 47 { 48 this.isbn = isbn; 49 } 50 51 52 } 53 | Popular Tags |