BrightSide Workbench Full Report + Source Code
org.turro.file.action.ReportAction Class Reference
Inheritance diagram for org.turro.file.action.ReportAction:
Collaboration diagram for org.turro.file.action.ReportAction:

Public Member Functions

 ReportAction (JasperFile fw, ReportTypeEnum rt)
 
String getLabel ()
 
String getImage ()
 
Object doAction ()
 
boolean refreshParent ()
 
boolean refreshSelf ()
 
boolean isClientSide ()
 

Detailed Description

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

Definition at line 27 of file ReportAction.java.

Constructor & Destructor Documentation

◆ ReportAction()

org.turro.file.action.ReportAction.ReportAction ( JasperFile  fw,
ReportTypeEnum  rt 
)

Definition at line 32 of file ReportAction.java.

32  {
33  this.fw = fw;
34  this.rt = rt;
35  }

Member Function Documentation

◆ doAction()

Object org.turro.file.action.ReportAction.doAction ( )

Implements org.turro.file.action.FileAction.

Definition at line 48 of file ReportAction.java.

48  {
49  fw.print(rt.getLabel(), rt.getType());
50  return null;
51  }
void print(String caption, String type)
Definition: JasperFile.java:44
Here is the call graph for this function:

◆ getImage()

String org.turro.file.action.ReportAction.getImage ( )

Implements org.turro.file.action.FileAction.

Definition at line 43 of file ReportAction.java.

43  {
44  return rt.getImage();
45  }
Here is the call graph for this function:

◆ getLabel()

String org.turro.file.action.ReportAction.getLabel ( )

Implements org.turro.file.action.FileAction.

Definition at line 38 of file ReportAction.java.

38  {
39  return rt.getLabel();
40  }
Here is the call graph for this function:

◆ isClientSide()

boolean org.turro.file.action.ReportAction.isClientSide ( )

Implements org.turro.file.action.FileAction.

Definition at line 64 of file ReportAction.java.

64  {
65  return false;
66  }

◆ refreshParent()

boolean org.turro.file.action.ReportAction.refreshParent ( )

Implements org.turro.file.action.FileAction.

Definition at line 54 of file ReportAction.java.

54  {
55  return false;
56  }

◆ refreshSelf()

boolean org.turro.file.action.ReportAction.refreshSelf ( )

Implements org.turro.file.action.FileAction.

Definition at line 59 of file ReportAction.java.

59  {
60  return false;
61  }

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