BrightSide Workbench Full Report + Source Code
org.turro.web.funnel.FunnelDashboard Class Reference
Inheritance diagram for org.turro.web.funnel.FunnelDashboard:
Collaboration diagram for org.turro.web.funnel.FunnelDashboard:

Public Member Functions

boolean isTest ()
 
void startConstruction () throws ServletException, IOException
 
- Public Member Functions inherited from org.turro.elephant.impl.abstracts.AbstractElement
 AbstractElement ()
 
String getId ()
 
String getType ()
 
String getTitle ()
 
void setTitle (String title)
 
Collection< String > getMetas ()
 
void setMetas (Collection< String > metas)
 
ElContext getContext ()
 
IConstructor getConstructor ()
 
void loadData () throws ServletException, IOException
 
void setConfiguration (IConstructor constructor, ElContext context)
 
String getStart ()
 
String getEnd ()
 
String getStartTitle ()
 
String getEndTitle ()
 
String getStartBody ()
 
String getEndBody ()
 
String getStartFooter ()
 
String getEndFooter ()
 
String getStartOption ()
 
String getEndOption ()
 
boolean canDisplay ()
 
boolean isSelectable ()
 
boolean isInRole ()
 
boolean canPrint ()
 
String getElementFolder ()
 
boolean isOriginalContext ()
 
void setRootCategories (ElContext root)
 
String getTypeName ()
 
AttributeSupport getAttributes ()
 
void applyChanges ()
 
void populateFromParent ()
 
void setDefaultMetas ()
 
void setConfiguration (Element conf, Element factory)
 

Additional Inherited Members

- Protected Attributes inherited from org.turro.elephant.impl.abstracts.AbstractElement
IConstructor constructor
 
ElContext context
 
AttributeSupport attrSupport
 
Element conf = null
 
String[] types
 
String title
 
Collection< String > metas
 

Detailed Description

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

Definition at line 44 of file FunnelDashboard.java.

Member Function Documentation

◆ isTest()

boolean org.turro.web.funnel.FunnelDashboard.isTest ( )

Definition at line 51 of file FunnelDashboard.java.

51  {
52  return test;
53  }

◆ startConstruction()

void org.turro.web.funnel.FunnelDashboard.startConstruction ( ) throws ServletException, IOException

This method start element's construction. It gets called within IConstructor.startConstruction().

Exceptions
javax.servlet.ServletException
java.io.IOException

Reimplemented from org.turro.elephant.impl.abstracts.AbstractElement.

Definition at line 56 of file FunnelDashboard.java.

56  {
57  goalActions = Strings.csvToList(getAttributes().getAttributeValue("attrib:goals", null));
58  if(!goalActions.isEmpty()) SessionGoals.get(constructor).goals(goalActions);
59  test = getAttributes().getAttributeBooleanValue("attrib:test", false);
60  checkClean();
61  vertices = FunnelVertices.load(constructor);
62  FunnelVertex vertex = vertices.current();
63  if(vertex == null) {
64  constructTargets();
65  } else {
66  constructVertex(vertex);
67  }
68  }
static FunnelVertices load(IConstructor constructor)
Here is the call graph for this function:

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