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

Public Member Functions

String getAttribute (String attribute)
 
String getAttribute (String attribute, String defaultValue)
 

Static Public Member Functions

static String getMetaTagContextAttribute (String attribute, String defaultValue)
 
static String getColor (String tagName)
 
static String getIcon (String tagName)
 

Detailed Description

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

Definition at line 27 of file MetaSkillContext.java.

Member Function Documentation

◆ getAttribute() [1/2]

String org.turro.skills.tags.MetaSkillContext.getAttribute ( String  attribute)

Definition at line 29 of file MetaSkillContext.java.

29  {
30  return getAttribute(attribute, null);
31  }

◆ getAttribute() [2/2]

String org.turro.skills.tags.MetaSkillContext.getAttribute ( String  attribute,
String  defaultValue 
)

Definition at line 33 of file MetaSkillContext.java.

33  {
34  return getMetaTagContextAttribute(attribute, defaultValue);
35  }
static String getMetaTagContextAttribute(String attribute, String defaultValue)
Here is the call graph for this function:

◆ getColor()

static String org.turro.skills.tags.MetaSkillContext.getColor ( String  tagName)
static

Definition at line 45 of file MetaSkillContext.java.

45  {
46  return getMetaTagContextAttribute(tagName + ".color", null);
47  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getIcon()

static String org.turro.skills.tags.MetaSkillContext.getIcon ( String  tagName)
static

Definition at line 49 of file MetaSkillContext.java.

49  {
50  return getMetaTagContextAttribute(tagName + ".icon", null);
51  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getMetaTagContextAttribute()

static String org.turro.skills.tags.MetaSkillContext.getMetaTagContextAttribute ( String  attribute,
String  defaultValue 
)
static

Definition at line 41 of file MetaSkillContext.java.

41  {
42  return ElephantProperties.getContextProperty(METASKILL_CONTEXT, attribute, defaultValue);
43  }
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: