1 16 17 18 package org.apache.commons.betwixt.dotbetwixt; 19 20 24 public class Book { 25 26 private String author; 27 private String title; 28 private String ISBN; 29 30 31 public String getAuthor() { 32 return author; 33 } 34 35 36 public String getISBN() { 37 return ISBN; 38 } 39 40 41 public String getTitle() { 42 return title; 43 } 44 45 public void setAuthor(String string) { 46 author = string; 47 } 48 49 public void setISBN(String string) { 50 ISBN = string; 51 } 52 53 public void setTitle(String string) { 54 title = string; 55 } 56 57 } 58 | Popular Tags |