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

Public Member Functions

 TagPanel ()
 
String getEntityRoot ()
 
void setEntityRoot (String entityRoot)
 
Set< TagItemgetSelected ()
 
void updateTags ()
 
void afterCompose ()
 

Detailed Description

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

Definition at line 34 of file TagPanel.java.

Constructor & Destructor Documentation

◆ TagPanel()

org.turro.tags.TagPanel.TagPanel ( )

Definition at line 40 of file TagPanel.java.

40  {
41  allTags = new Div();
42  appendChild(allTags);
43  appendChild(new Separator("horizontal"));
44  }

Member Function Documentation

◆ afterCompose()

void org.turro.tags.TagPanel.afterCompose ( )

Definition at line 89 of file TagPanel.java.

89  {
90  updateTags();
91  }
Here is the call graph for this function:

◆ getEntityRoot()

String org.turro.tags.TagPanel.getEntityRoot ( )

Definition at line 46 of file TagPanel.java.

46  {
47  return entityRoot;
48  }

◆ getSelected()

Set<TagItem> org.turro.tags.TagPanel.getSelected ( )

Definition at line 54 of file TagPanel.java.

54  {
55  return tags.getSelected();
56  }
TreeSet< TagItem > getSelected()
Definition: TagSet.java:96
Here is the call graph for this function:

◆ setEntityRoot()

void org.turro.tags.TagPanel.setEntityRoot ( String  entityRoot)

Definition at line 50 of file TagPanel.java.

50  {
51  this.entityRoot = entityRoot;
52  }

◆ updateTags()

void org.turro.tags.TagPanel.updateTags ( )

Definition at line 58 of file TagPanel.java.

58  {
59  tags = Tags.getAvailables(entityRoot);
60  long maxUsage = tags.getMaxUsage();
61  drawTags(maxUsage);
62  }
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: