1 20 package org.objectweb.speedo.pobjects.basic; 21 22 26 public class OrderLine { 27 long lineNumber; 28 int quantity; 29 Product product; 30 31 public OrderLine(long lineNumber) { 32 this.lineNumber = lineNumber; 33 } 34 35 public long getLineNumber() { 36 return lineNumber; 37 } 38 39 public int getQuantity() { 40 return quantity; 41 } 42 43 public void setQuantity(int quantity) { 44 this.quantity = quantity; 45 } 46 47 public Product getProduct() { 48 return product; 49 } 50 51 public void setProduct(Product product) { 52 this.product = product; 53 } 54 } 55 | Popular Tags |