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

Public Member Functions

long getId ()
 
void setId (long id)
 
String getName ()
 
void setName (String name)
 
int compareTo (XMLHumanResource o)
 

Detailed Description

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

Definition at line 27 of file XMLHumanResource.java.

Member Function Documentation

◆ compareTo()

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

Definition at line 50 of file XMLHumanResource.java.

50  {
51  int result = CompareUtil.compare(name, o.name);
52  if(result == 0) {
53  result = CompareUtil.compare(id, o.id);
54  }
55  return result;
56  }

◆ getId()

long org.turro.erp.time.XMLHumanResource.getId ( )

Definition at line 33 of file XMLHumanResource.java.

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

◆ getName()

String org.turro.erp.time.XMLHumanResource.getName ( )

Definition at line 41 of file XMLHumanResource.java.

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

◆ setId()

void org.turro.erp.time.XMLHumanResource.setId ( long  id)

Definition at line 37 of file XMLHumanResource.java.

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

◆ setName()

void org.turro.erp.time.XMLHumanResource.setName ( String  name)

Definition at line 45 of file XMLHumanResource.java.

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

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