BrightSide Workbench Full Report + Source Code
org.turro.erp.purchase.Order Class Reference

Public Member Functions

double getCost ()
 
void setCost (double cost)
 
Date getDate ()
 
void setDate (Date date)
 
double getLines ()
 
void setLines (double lines)
 
String getNumber ()
 
void setNumber (String number)
 
double getUnits ()
 
void setUnits (double units)
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 27 of file Order.java.

Member Function Documentation

◆ getCost()

double org.turro.erp.purchase.Order.getCost ( )

Definition at line 33 of file Order.java.

33  {
34  return cost;
35  }
Here is the caller graph for this function:

◆ getDate()

Date org.turro.erp.purchase.Order.getDate ( )

Definition at line 41 of file Order.java.

41  {
42  return date;
43  }
Here is the caller graph for this function:

◆ getLines()

double org.turro.erp.purchase.Order.getLines ( )

Definition at line 49 of file Order.java.

49  {
50  return lines;
51  }
Here is the caller graph for this function:

◆ getNumber()

String org.turro.erp.purchase.Order.getNumber ( )

Definition at line 57 of file Order.java.

57  {
58  return number;
59  }
Here is the caller graph for this function:

◆ getUnits()

double org.turro.erp.purchase.Order.getUnits ( )

Definition at line 65 of file Order.java.

65  {
66  return units;
67  }
Here is the caller graph for this function:

◆ setCost()

void org.turro.erp.purchase.Order.setCost ( double  cost)

Definition at line 37 of file Order.java.

37  {
38  this.cost = cost;
39  }
Here is the caller graph for this function:

◆ setDate()

void org.turro.erp.purchase.Order.setDate ( Date  date)

Definition at line 45 of file Order.java.

45  {
46  this.date = date;
47  }
Here is the caller graph for this function:

◆ setLines()

void org.turro.erp.purchase.Order.setLines ( double  lines)

Definition at line 53 of file Order.java.

53  {
54  this.lines = lines;
55  }
Here is the caller graph for this function:

◆ setNumber()

void org.turro.erp.purchase.Order.setNumber ( String  number)

Definition at line 61 of file Order.java.

61  {
62  this.number = number;
63  }
Here is the caller graph for this function:

◆ setUnits()

void org.turro.erp.purchase.Order.setUnits ( double  units)

Definition at line 69 of file Order.java.

69  {
70  this.units = units;
71  }
Here is the caller graph for this function:

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