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

Public Member Functions

long getId ()
 
void setId (long id)
 
String getName ()
 
void setName (String name)
 
List< AptitudeDegreegetAptitudeDegrees ()
 
void setAptitudeDegrees (List< AptitudeDegree > aptitudeDegrees)
 
boolean isEmpty ()
 
void clearEmptyLines ()
 
void prepareForSaving ()
 

Detailed Description

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

Definition at line 31 of file Aptitude.java.

Member Function Documentation

◆ clearEmptyLines()

void org.turro.erp.entity.Aptitude.clearEmptyLines ( )

Definition at line 75 of file Aptitude.java.

75  {
76  Iterator<AptitudeDegree> itp = aptitudeDegrees.iterator();
77  while(itp.hasNext()) {
78  AptitudeDegree p = itp.next();
79  if(p.isEmpty()) {
80  p.setAptitude(null);
81  itp.remove();
82  }
83  }
84  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getAptitudeDegrees()

List<AptitudeDegree> org.turro.erp.entity.Aptitude.getAptitudeDegrees ( )

Definition at line 60 of file Aptitude.java.

60  {
61  return aptitudeDegrees;
62  }
Here is the caller graph for this function:

◆ getId()

long org.turro.erp.entity.Aptitude.getId ( )

Definition at line 44 of file Aptitude.java.

44  {
45  return id;
46  }

◆ getName()

String org.turro.erp.entity.Aptitude.getName ( )

Definition at line 52 of file Aptitude.java.

52  {
53  return name;
54  }
Here is the caller graph for this function:

◆ isEmpty()

boolean org.turro.erp.entity.Aptitude.isEmpty ( )

Definition at line 70 of file Aptitude.java.

70  {
72  return Strings.isBlank(name);
73  }
Here is the call graph for this function:

◆ prepareForSaving()

void org.turro.erp.entity.Aptitude.prepareForSaving ( )

Definition at line 86 of file Aptitude.java.

86  {
88  }
Here is the call graph for this function:

◆ setAptitudeDegrees()

void org.turro.erp.entity.Aptitude.setAptitudeDegrees ( List< AptitudeDegree aptitudeDegrees)

Definition at line 64 of file Aptitude.java.

64  {
65  this.aptitudeDegrees = aptitudeDegrees;
66  }

◆ setId()

void org.turro.erp.entity.Aptitude.setId ( long  id)

Definition at line 48 of file Aptitude.java.

48  {
49  this.id = id;
50  }

◆ setName()

void org.turro.erp.entity.Aptitude.setName ( String  name)

Definition at line 56 of file Aptitude.java.

56  {
57  this.name = name;
58  }

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