1 16 17 20 public class Book implements Item { 21 22 private String isbn; 23 private String title; 24 private String author; 25 private String desc; 26 27 public Book(String isbn) { 28 this.isbn = isbn; 29 } 30 31 public void setTitle(String title) { 32 this.title = title; 33 } 34 35 public void setAuthor(String author) { 36 this.author = author; 37 } 38 39 public void setDesc(String desc) { 40 this.desc = desc; 41 } 42 43 public void print() { 44 System.out.println("Book:"); 45 System.out.println(" isbn=" + isbn); 46 System.out.println(" title=" + title); 47 System.out.println(" author=" + author); 48 System.out.println(" desc=" + desc); 49 } 50 } 51 | Popular Tags |