MySQL 5.6.14 Source Code Document
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
testsuite.clusterj.model.OrderLine Interface Reference
Inheritance diagram for testsuite.clusterj.model.OrderLine:
Collaboration diagram for testsuite.clusterj.model.OrderLine:

Public Member Functions

int getId ()
void setId (int id)
int getLineNumber ()
void setLineNumber (int lineNumber)
long getQuantity ()
void setQuantity (long quantity)
float getUnitPrice ()
void setUnitPrice (float unitPrice)
double getTotalValue ()
void setTotalValue (double totalValue)
int getOrderId ()
void setOrderId (int orderId)

Detailed Description

OrderLine represents a line item in an order

CREATE TABLE b0 ( id INT NOT NULL, // id generated number cint INT, // line item number clong BIGINT, // quantity cfloat FLOAT, // unit price cdouble DOUBLE, // value of this line item a_id INT, // order number associated with this order line cstring VARCHAR(100), // description cvarchar_ascii VARCHAR(100) CHARACTER SET ASCII, ctext_ascii TEXT(100) CHARACTER SET ASCII, cvarchar_ucs2 VARCHAR(100) CHARACTER SET ASCII, ctext_ucs2 TEXT(100) CHARACTER SET ASCII, KEY FK_a_id (a_id), CONSTRAINT PK_B0_0 PRIMARY KEY (id) ) ENGINE=ndbcluster DEFAULT CHARSET=latin1;

Definition at line 46 of file OrderLine.java.


The documentation for this interface was generated from the following file: