BrightSide Workbench Full Report + Source Code
org.turro.crm.zul.sale.SaleActionSet Class Reference
Inheritance diagram for org.turro.crm.zul.sale.SaleActionSet:
Collaboration diagram for org.turro.crm.zul.sale.SaleActionSet:

Public Member Functions

 SaleActionSet (SaleProspect saleProspect)
 
 SaleActionSet (Collection<? extends SaleAction > c)
 

Detailed Description

Author
llturro

Definition at line 13 of file SaleActionSet.java.

Constructor & Destructor Documentation

◆ SaleActionSet() [1/2]

org.turro.crm.zul.sale.SaleActionSet.SaleActionSet ( SaleProspect  saleProspect)

Definition at line 15 of file SaleActionSet.java.

15  {
16  super(new SaleActionComparator());
17  for(VendorProspect vp : saleProspect.getUpdatedVendorProspects()) {
18  addAll(vp.getUpdatedSaleActions());
19  }
20  }
Here is the call graph for this function:

◆ SaleActionSet() [2/2]

org.turro.crm.zul.sale.SaleActionSet.SaleActionSet ( Collection<? extends SaleAction c)

Definition at line 22 of file SaleActionSet.java.

22  {
23  super(new SaleActionComparator());
24  addAll(c);
25  }

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