KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > genimen > djeneric > test > strong > OrderlineQbe


1 package com.genimen.djeneric.test.strong;
2
3 // Place your custom code BETWEEN the following tags
4
//<DjenericManualCode id="1">
5
//</DjenericManualCode>
6
public interface OrderlineQbe
7 {
8   public void setQueryOperator(String JavaDoc propertyName, String JavaDoc operator) throws TestException;
9
10   public long getId();
11
12   public void setId(long value) throws TestException;
13
14   public int getLine();
15
16   public void setLine(int value) throws TestException;
17
18   public int getQuantity();
19
20   public void setQuantity(int value) throws TestException;
21
22   public Order getTheOrder() throws TestException;
23
24   public void setTheOrder(Order value) throws TestException;
25
26   public Product getProduct() throws TestException;
27
28   public void setProduct(Product value) throws TestException;
29
30   // Place your custom code BETWEEN the following tags
31
//<DjenericManualCode>
32
//</DjenericManualCode>
33
}
Popular Tags