1 25 26 package org.objectweb.speedo.pobjects.fetchgroup; 27 28 31 public class Novel extends Book { 32 33 String title; 34 Style style; 35 36 public Novel(int isbn, Author author, int pageNb, String title, Style style) { 37 super(isbn, author, pageNb, "novel"); 38 this.title = title; 39 this.style = style; 40 } 41 42 public Novel(int isbn, Author author, int pageNb, String title, Style style, String type) { 43 super(isbn, author, pageNb, type); 44 this.title = title; 45 this.style = style; 46 } 47 48 public Style getStyle() { 49 return style; 50 } 51 public void setStyle(Style style) { 52 this.style = style; 53 } 54 public String getTitle() { 55 return title; 56 } 57 public void setTitle(String title) { 58 this.title = title; 59 } 60 61 public String toString(){ 62 return super.toString() + "\n\t[title=" + title + ",style=" + (style == null?"no style":style.toString()) + "]"; 63 } 64 } 65 | Popular Tags |