BrightSide Workbench Full Report + Source Code
org.turro.tags.MetaTagContext 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 MetaTagContext.java.

Member Function Documentation

◆ getAttribute() [1/2]

String org.turro.tags.MetaTagContext.getAttribute ( String  attribute)

Definition at line 29 of file MetaTagContext.java.

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

◆ getAttribute() [2/2]

String org.turro.tags.MetaTagContext.getAttribute ( String  attribute,
String  defaultValue 
)

Definition at line 33 of file MetaTagContext.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.tags.MetaTagContext.getColor ( String  tagName)
static

Definition at line 45 of file MetaTagContext.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.tags.MetaTagContext.getIcon ( String  tagName)
static

Definition at line 49 of file MetaTagContext.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.tags.MetaTagContext.getMetaTagContextAttribute ( String  attribute,
String  defaultValue 
)
static

Definition at line 41 of file MetaTagContext.java.

41  {
42  return ElephantProperties.getContextProperty(METATAG_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: