BrightSide Workbench Full Report + Source Code
org.turro.elephant.entities.db.Skill Class Reference
Inheritance diagram for org.turro.elephant.entities.db.Skill:
Collaboration diagram for org.turro.elephant.entities.db.Skill:

Public Member Functions

String getSkill ()
 
void setSkill (String skill)
 
String getEntityPath ()
 
void setEntityPath (String entityPath)
 
SkillType getType ()
 
void setType (SkillType type)
 
boolean isValidated ()
 
void setValidated (boolean validated)
 
boolean isEmpty ()
 
IElephantEntity getEntity ()
 

Detailed Description

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

Definition at line 34 of file Skill.java.

Member Function Documentation

◆ getEntity()

IElephantEntity org.turro.elephant.entities.db.Skill.getEntity ( )

Definition at line 81 of file Skill.java.

81  {
82  return Entities.getController(entityPath);
83  }
Here is the call graph for this function:

◆ getEntityPath()

String org.turro.elephant.entities.db.Skill.getEntityPath ( )

Definition at line 51 of file Skill.java.

51  {
52  return entityPath;
53  }

◆ getSkill()

String org.turro.elephant.entities.db.Skill.getSkill ( )

Definition at line 43 of file Skill.java.

43  {
44  return skill;
45  }
Here is the caller graph for this function:

◆ getType()

SkillType org.turro.elephant.entities.db.Skill.getType ( )

Definition at line 59 of file Skill.java.

59  {
60  return type;
61  }
Here is the caller graph for this function:

◆ isEmpty()

boolean org.turro.elephant.entities.db.Skill.isEmpty ( )

Definition at line 77 of file Skill.java.

77  {
78  return Strings.isBlank(skill) || Strings.isBlank(entityPath) || type == null;
79  }
Here is the caller graph for this function:

◆ isValidated()

boolean org.turro.elephant.entities.db.Skill.isValidated ( )

Definition at line 67 of file Skill.java.

67  {
68  return validated;
69  }
Here is the caller graph for this function:

◆ setEntityPath()

void org.turro.elephant.entities.db.Skill.setEntityPath ( String  entityPath)

Definition at line 55 of file Skill.java.

55  {
56  this.entityPath = entityPath;
57  }
Here is the caller graph for this function:

◆ setSkill()

void org.turro.elephant.entities.db.Skill.setSkill ( String  skill)

Definition at line 47 of file Skill.java.

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

◆ setType()

void org.turro.elephant.entities.db.Skill.setType ( SkillType  type)

Definition at line 63 of file Skill.java.

63  {
64  this.type = type;
65  }
Here is the caller graph for this function:

◆ setValidated()

void org.turro.elephant.entities.db.Skill.setValidated ( boolean  validated)

Definition at line 71 of file Skill.java.

71  {
72  this.validated = validated;
73  }
Here is the caller graph for this function:

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