BrightSide Workbench Full Report + Source Code
org.turro.jpa.grid.RenderPathOnDemand Class Referenceabstract
Inheritance diagram for org.turro.jpa.grid.RenderPathOnDemand:
Collaboration diagram for org.turro.jpa.grid.RenderPathOnDemand:

Public Member Functions

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

Protected Member Functions

void renderGroup (Group group, IElephantEntity entity)
 
abstract void renderRow (Row row, IElephantEntity entity)
 

Detailed Description

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

Definition at line 31 of file RenderPathOnDemand.java.

Member Function Documentation

◆ render()

void org.turro.jpa.grid.RenderPathOnDemand.render ( Row  row,
Object  data,
int  index 
) throws Exception

Definition at line 34 of file RenderPathOnDemand.java.

34  {
35  if(data instanceof String) {
36  IElephantEntity iee = Entities.getController(data);
37  if(row instanceof Group) {
38  renderGroup((Group) row, iee);
39  } else {
40  renderRow(row, iee);
41  }
42  }
43  }
abstract void renderRow(Row row, IElephantEntity entity)
void renderGroup(Group group, IElephantEntity entity)
Here is the call graph for this function:

◆ renderGroup()

void org.turro.jpa.grid.RenderPathOnDemand.renderGroup ( Group  group,
IElephantEntity  entity 
)
protected

Definition at line 45 of file RenderPathOnDemand.java.

45  {
46  group.setLabel(entity.getLabel());
47  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ renderRow()

abstract void org.turro.jpa.grid.RenderPathOnDemand.renderRow ( Row  row,
IElephantEntity  entity 
)
abstractprotected
Here is the caller graph for this function:

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