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

Public Member Functions

 ParticipationControl ()
 
String getLabel ()
 
void setLabel (String label)
 
String getEntityPath ()
 
void setEntityPath (String entityPath)
 
void setEntity (Object entity)
 
void refreshControls ()
 
void afterCompose ()
 

Detailed Description

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

Definition at line 36 of file ParticipationControl.java.

Constructor & Destructor Documentation

◆ ParticipationControl()

org.turro.participation.ParticipationControl.ParticipationControl ( )

Definition at line 43 of file ParticipationControl.java.

43  {
44  Executions.createComponents("/WEB-INF/_zul/bs/comps/participation/participationControl.zul", this, null);
45  Selectors.wireComponents(this, this, false);
46  Selectors.wireEventListeners(this, this);
47  }

Member Function Documentation

◆ afterCompose()

void org.turro.participation.ParticipationControl.afterCompose ( )

Definition at line 80 of file ParticipationControl.java.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getEntityPath()

String org.turro.participation.ParticipationControl.getEntityPath ( )

Definition at line 57 of file ParticipationControl.java.

57  {
58  return entityPath;
59  }

◆ getLabel()

String org.turro.participation.ParticipationControl.getLabel ( )

Definition at line 49 of file ParticipationControl.java.

49  {
50  return label;
51  }

◆ refreshControls()

void org.turro.participation.ParticipationControl.refreshControls ( )

Implements org.turro.action.IEntityHolder.

Definition at line 75 of file ParticipationControl.java.

Here is the call graph for this function:

◆ setEntity()

void org.turro.participation.ParticipationControl.setEntity ( Object  entity)

Implements org.turro.action.IEntityHolder.

Definition at line 66 of file ParticipationControl.java.

66  {
67  IElephantEntity iee = Entities.getController(entity);
68  entityPath = iee.getPath();
69  if(!Strings.isBlank(entityPath)) {
70  label = iee.getName();
71  }
72  }
Here is the call graph for this function:

◆ setEntityPath()

void org.turro.participation.ParticipationControl.setEntityPath ( String  entityPath)

Definition at line 61 of file ParticipationControl.java.

61  {
62  this.entityPath = entityPath;
63  }

◆ setLabel()

void org.turro.participation.ParticipationControl.setLabel ( String  label)

Definition at line 53 of file ParticipationControl.java.

53  {
54  this.label = label;
55  }

The documentation for this class was generated from the following file: