1 package com.genimen.djeneric.test.strong; 2 3 public interface Orderline extends TestObject 7 { 8 public long determineObjectId() throws TestException; 9 10 public long getId(); 11 12 public boolean isNullId(); 13 14 public int getLine(); 15 16 public boolean isNullLine(); 17 18 public void setLine(int value) throws TestException; 19 20 public void setNullLine() throws TestException; 21 22 public int getQuantity(); 23 24 public boolean isNullQuantity(); 25 26 public void setQuantity(int value) throws TestException; 27 28 public void setNullQuantity() throws TestException; 29 30 public Order getTheOrder() throws TestException; 31 32 public boolean isNullTheOrder(); 33 34 public void setTheOrder(Order value) throws TestException; 35 36 public void setNullTheOrder() throws TestException; 37 38 public Product getProduct() throws TestException; 39 40 public boolean isNullProduct(); 41 42 public void setProduct(Product value) throws TestException; 43 44 public void setNullProduct() throws TestException; 45 46 } | Popular Tags |