1 package com.genimen.djeneric.test.strong; 2 3 public interface Order extends TestObject 7 { 8 public long determineObjectId() throws TestException; 9 10 public long getId(); 11 12 public boolean isNullId(); 13 14 public java.util.Date getOrderdate(); 15 16 public boolean isNullOrderdate(); 17 18 public void setOrderdate(java.util.Date value) throws TestException; 19 20 public void setNullOrderdate() throws TestException; 21 22 public long getOrdernumber(); 23 24 public boolean isNullOrdernumber(); 25 26 public void setOrdernumber(long value) throws TestException; 27 28 public void setNullOrdernumber() throws TestException; 29 30 public Customer getCustomer() throws TestException; 31 32 public boolean isNullCustomer(); 33 34 public void setCustomer(Customer value) throws TestException; 35 36 public void setNullCustomer() throws TestException; 37 38 40 public Orderline[] getOrderlines() throws TestException; 41 42 public Orderline[] getOrderlines(OrderlineQbe qbe) throws TestException; 43 44 public OrderlineCursor getOrderlinesCursor() throws TestException; 45 46 public OrderlineCursor getOrderlinesCursor(OrderlineQbe qbe) throws TestException; 47 48 public void addToOrderlines(Orderline orderlines) throws TestException; 49 50 public Orderline createOrderlineInOrderlines() throws TestException; 51 52 } | Popular Tags |