View Javadoc

1   package org.paneris.bibliomania.loadtest;
2   
3   import java.io.Serializable;
4   
5   class BookDesc implements Serializable {
6     /**
7      * 
8      */
9     private static final long serialVersionUID = 1L;
10    int sectiongroup;
11    int section;
12    int author;
13    int book;
14    ChapterDesc[] chapters;
15  
16    BookDesc(int sectiongroup, int section, int author, int book,
17             ChapterDesc[] chapters) {
18      this.sectiongroup = sectiongroup;
19      this.section = section;
20      this.author = author;
21      this.book = book;
22      this.chapters = chapters;
23    }
24  }