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

Public Member Functions

void render (Row row, Object data, int index) throws Exception
 

Protected Member Functions

void renderGroup (Group group, IEntityParticipation participation)
 
abstract void renderRow (Row row, IEntityParticipation participation)
 

Detailed Description

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

Definition at line 29 of file RenderParticipationOnDemand.java.

Member Function Documentation

◆ render()

void org.turro.participation.RenderParticipationOnDemand.render ( Row  row,
Object  data,
int  index 
) throws Exception

Definition at line 32 of file RenderParticipationOnDemand.java.

32  {
33  if(data instanceof IEntityParticipation) {
34  if(row instanceof Group) {
35  renderGroup((Group) row, (IEntityParticipation) data);
36  } else {
37  renderRow(row, (IEntityParticipation) data);
38  }
39  }
40  }
abstract void renderRow(Row row, IEntityParticipation participation)
void renderGroup(Group group, IEntityParticipation participation)
Here is the call graph for this function:

◆ renderGroup()

void org.turro.participation.RenderParticipationOnDemand.renderGroup ( Group  group,
IEntityParticipation  participation 
)
protected

Definition at line 42 of file RenderParticipationOnDemand.java.

42  {
43  group.setLabel(participation.getEntity().getLabel());
44  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ renderRow()

abstract void org.turro.participation.RenderParticipationOnDemand.renderRow ( Row  row,
IEntityParticipation  participation 
)
abstractprotected
Here is the caller graph for this function:

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