Hi Jason,

Here is the code that I had for StockData:

package org.test;
  | 
  | import java.io.Serializable;
  | 
  | public class StockData
  |   implements Serializable
  | {
  |   /**
  |    * 
  |    */
  |   private static final long serialVersionUID = 1L;
  |   
  |   private String title;
  |   private int issue;
  |   private int value;
  |   private boolean hasStock;
  |   
  |   public StockData() {
  |   }
  |   
  |   public StockData(String title,
  |             int issue,
  |             int value,
  |             boolean hasStock) {
  |     this.title = title;
  |     this.issue = issue;
  |     this.value = value;
  |     this.hasStock = hasStock;
  |   }
  |   
  |   void setTitle(String title) {
  |     this.title = title;
  |   }
  |   String getTitle() {
  |     return title;
  |   }
  |   void setIssue(int issue) {
  |     this.issue = issue;
  |   }
  |   int getIssue() {
  |     return issue;
  |   }
  |   void setValue(int value) {
  |     this.value = value;
  |   }
  |   int getValue() {
  |     return value;
  |   }
  |   void setHasStock(boolean hasStock) {
  |     this.hasStock = hasStock;
  |   }
  |   boolean isHasStock() {
  |     return hasStock;
  |   }
  | }

Thanks for taking the time to help me with this,

Chris.



View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3981731#3981731

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3981731
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to