1 28 29 30 31 35 public class HeadingBean 36 { 37 38 39 42 private Integer headingType = null; 43 private String headingText = null; 44 private String reference = null; 45 private Integer pageIndex = null; 46 47 48 51 public HeadingBean( 52 Integer type, 53 String text, 54 String reference, 55 Integer pageIndex 56 ) 57 { 58 this.headingType = type; 59 this.headingText = text; 60 this.reference = reference; 61 this.pageIndex = pageIndex; 62 } 63 64 65 68 public Integer getHeadingType() 69 { 70 return this.headingType; 71 } 72 73 74 77 public String getHeadingText() 78 { 79 return this.headingText; 80 } 81 82 83 86 public String getReference() 87 { 88 return this.reference; 89 } 90 91 92 95 public Integer getPageIndex() 96 { 97 return this.pageIndex; 98 } 99 100 101 } 102 | Popular Tags |