BrightSide Workbench Full Report + Source Code
org.turro.erp.time.XMLTimeControl Class Reference
Inheritance diagram for org.turro.erp.time.XMLTimeControl:
Collaboration diagram for org.turro.erp.time.XMLTimeControl:

Public Member Functions

long getHumanResourceId ()
 
void setHumanResourceId (long humanResourceId)
 
Date getStartTime ()
 
void setStartTime (Date startTime)
 
Date getEndTime ()
 
void setEndTime (Date endTime)
 
int compareTo (XMLTimeControl o)
 

Detailed Description

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

Definition at line 28 of file XMLTimeControl.java.

Member Function Documentation

◆ compareTo()

int org.turro.erp.time.XMLTimeControl.compareTo ( XMLTimeControl  o)

Definition at line 61 of file XMLTimeControl.java.

61  {
62  int result = CompareUtil.compare(startTime, o.startTime);
63  if(result == 0) {
64  result = CompareUtil.compare(humanResourceId, o.humanResourceId);
65  }
66  return result;
67  }

◆ getEndTime()

Date org.turro.erp.time.XMLTimeControl.getEndTime ( )

Definition at line 52 of file XMLTimeControl.java.

52  {
53  return endTime;
54  }

◆ getHumanResourceId()

long org.turro.erp.time.XMLTimeControl.getHumanResourceId ( )

Definition at line 36 of file XMLTimeControl.java.

36  {
37  return humanResourceId;
38  }
Here is the caller graph for this function:

◆ getStartTime()

Date org.turro.erp.time.XMLTimeControl.getStartTime ( )

Definition at line 44 of file XMLTimeControl.java.

44  {
45  return startTime;
46  }
Here is the caller graph for this function:

◆ setEndTime()

void org.turro.erp.time.XMLTimeControl.setEndTime ( Date  endTime)

Definition at line 56 of file XMLTimeControl.java.

56  {
57  this.endTime = endTime;
58  }

◆ setHumanResourceId()

void org.turro.erp.time.XMLTimeControl.setHumanResourceId ( long  humanResourceId)

Definition at line 40 of file XMLTimeControl.java.

40  {
41  this.humanResourceId = humanResourceId;
42  }
Here is the caller graph for this function:

◆ setStartTime()

void org.turro.erp.time.XMLTimeControl.setStartTime ( Date  startTime)

Definition at line 48 of file XMLTimeControl.java.

48  {
49  this.startTime = startTime;
50  }
Here is the caller graph for this function:

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