BrightSide Workbench Full Report + Source Code
org.turro.skills.SkillPanel Class Reference
Inheritance diagram for org.turro.skills.SkillPanel:
Collaboration diagram for org.turro.skills.SkillPanel:

Public Member Functions

 SkillPanel ()
 
String getEntityRoot ()
 
void setEntityRoot (String entityRoot)
 
Set< SkillItemgetSelected ()
 
void updateSkills ()
 
void afterCompose ()
 

Detailed Description

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

Definition at line 37 of file SkillPanel.java.

Constructor & Destructor Documentation

◆ SkillPanel()

org.turro.skills.SkillPanel.SkillPanel ( )

Definition at line 43 of file SkillPanel.java.

43  {
44  allSkills = new Div();
45  appendChild(allSkills);
46  appendChild(new Separator("horizontal"));
47  }

Member Function Documentation

◆ afterCompose()

void org.turro.skills.SkillPanel.afterCompose ( )

Definition at line 92 of file SkillPanel.java.

92  {
93  updateSkills();
94  }
Here is the call graph for this function:

◆ getEntityRoot()

String org.turro.skills.SkillPanel.getEntityRoot ( )

Definition at line 49 of file SkillPanel.java.

49  {
50  return entityRoot;
51  }

◆ getSelected()

Set<SkillItem> org.turro.skills.SkillPanel.getSelected ( )

Definition at line 57 of file SkillPanel.java.

57  {
58  return skills.getSelected();
59  }
TreeSet< SkillItem > getSelected()
Definition: SkillSet.java:96
Here is the call graph for this function:

◆ setEntityRoot()

void org.turro.skills.SkillPanel.setEntityRoot ( String  entityRoot)

Definition at line 53 of file SkillPanel.java.

53  {
54  this.entityRoot = entityRoot;
55  }

◆ updateSkills()

void org.turro.skills.SkillPanel.updateSkills ( )

Definition at line 61 of file SkillPanel.java.

61  {
62  skills = SkillTags.getAvailables(entityRoot);
63  long maxUsage = skills.getMaxUsage();
64  drawSkills(maxUsage);
65  }
Here is the call graph for this function:
Here is the caller graph for this function:

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