1 package test.holders; 2 3 public class Book implements java.io.Serializable { 4 private java.lang.String author; 5 private java.lang.String title; 6 private int isbn; 7 8 public Book() { 9 } 10 11 public Book( 12 java.lang.String author, 13 int isbn, 14 java.lang.String title) { 15 this.author = author; 16 this.title = title; 17 this.isbn = isbn; 18 } 19 20 25 public java.lang.String getAuthor() { 26 return author; 27 } 28 29 34 public void setAuthor(java.lang.String author) { 35 this.author = author; 36 } 37 38 43 public java.lang.String getTitle() { 44 return title; 45 } 46 47 52 public void setTitle(java.lang.String title) { 53 this.title = title; 54 } 55 56 61 public int getIsbn() { 62 return isbn; 63 } 64 65 70 public void setIsbn(int isbn) { 71 this.isbn = isbn; 72 } 73 } 74 | Popular Tags |