BrightSide Workbench Full Report + Source Code
org.turro.financials.portfolio.WorkflowSet Class Reference
Inheritance diagram for org.turro.financials.portfolio.WorkflowSet:
Collaboration diagram for org.turro.financials.portfolio.WorkflowSet:

Public Member Functions

Collection< DocumentWorkflowgetWorkflows ()
 
Collection< DocumentWorkflowgetSelectedWorkflows ()
 

Detailed Description

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

Definition at line 29 of file WorkflowSet.java.

Member Function Documentation

◆ getSelectedWorkflows()

Collection<DocumentWorkflow> org.turro.financials.portfolio.WorkflowSet.getSelectedWorkflows ( )

Definition at line 39 of file WorkflowSet.java.

39  {
40  ArrayList<DocumentWorkflow> list = new ArrayList<DocumentWorkflow>();
41  for(WorkflowItem item : this) {
42  if(item.isSelected()) {
43  list.add(item.getWorkflow());
44  }
45  }
46  return list;
47  }
Here is the call graph for this function:

◆ getWorkflows()

Collection<DocumentWorkflow> org.turro.financials.portfolio.WorkflowSet.getWorkflows ( )

Definition at line 31 of file WorkflowSet.java.

31  {
32  ArrayList<DocumentWorkflow> list = new ArrayList<DocumentWorkflow>();
33  for(WorkflowItem item : this) {
34  list.add(item.getWorkflow());
35  }
36  return list;
37  }
Here is the call graph for this function:

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