BrightSide Workbench Full Report + Source Code
org.turro.skills.tags.SkillMeta Class Reference

Public Member Functions

 SkillMeta (String skillName, String icon, String color)
 
String getSkillName ()
 
String getIcon ()
 
String getColor ()
 

Static Public Member Functions

static SkillMeta importFrom (String skillName)
 

Detailed Description

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

Definition at line 25 of file SkillMeta.java.

Constructor & Destructor Documentation

◆ SkillMeta()

org.turro.skills.tags.SkillMeta.SkillMeta ( String  skillName,
String  icon,
String  color 
)

Definition at line 29 of file SkillMeta.java.

29  {
30  this.skillName = skillName;
31  this.icon = icon;
32  this.color = color;
33  }
Here is the caller graph for this function:

Member Function Documentation

◆ getColor()

String org.turro.skills.tags.SkillMeta.getColor ( )

Definition at line 43 of file SkillMeta.java.

43  {
44  return color;
45  }

◆ getIcon()

String org.turro.skills.tags.SkillMeta.getIcon ( )

Definition at line 39 of file SkillMeta.java.

39  {
40  return icon;
41  }

◆ getSkillName()

String org.turro.skills.tags.SkillMeta.getSkillName ( )

Definition at line 35 of file SkillMeta.java.

35  {
36  return skillName;
37  }

◆ importFrom()

static SkillMeta org.turro.skills.tags.SkillMeta.importFrom ( String  skillName)
static

Definition at line 47 of file SkillMeta.java.

47  {
48  return new SkillMeta(skillName, MetaSkillContext.getIcon(skillName), MetaSkillContext.getColor(skillName));
49  }
SkillMeta(String skillName, String icon, String color)
Definition: SkillMeta.java:29
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: