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

Public Member Functions

 TagMeta (String tagName, String icon, String color)
 
String getTagName ()
 
String getIcon ()
 
String getColor ()
 

Static Public Member Functions

static TagMeta importFrom (String tagName)
 

Detailed Description

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

Definition at line 25 of file TagMeta.java.

Constructor & Destructor Documentation

◆ TagMeta()

org.turro.tags.TagMeta.TagMeta ( String  tagName,
String  icon,
String  color 
)

Definition at line 29 of file TagMeta.java.

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

Member Function Documentation

◆ getColor()

String org.turro.tags.TagMeta.getColor ( )

Definition at line 43 of file TagMeta.java.

43  {
44  return color;
45  }

◆ getIcon()

String org.turro.tags.TagMeta.getIcon ( )

Definition at line 39 of file TagMeta.java.

39  {
40  return icon;
41  }

◆ getTagName()

String org.turro.tags.TagMeta.getTagName ( )

Definition at line 35 of file TagMeta.java.

35  {
36  return tagName;
37  }

◆ importFrom()

static TagMeta org.turro.tags.TagMeta.importFrom ( String  tagName)
static

Definition at line 47 of file TagMeta.java.

47  {
48  return new TagMeta(tagName, MetaTagContext.getIcon(tagName), MetaTagContext.getColor(tagName));
49  }
TagMeta(String tagName, String icon, String color)
Definition: TagMeta.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: