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

Public Member Functions

 DocumentByEntityList ()
 
void fillList (List< String > entityPaths)
 

Detailed Description

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

Definition at line 32 of file DocumentByEntityList.java.

Constructor & Destructor Documentation

◆ DocumentByEntityList()

org.turro.entities.portfolio.DocumentByEntityList.DocumentByEntityList ( )

Definition at line 34 of file DocumentByEntityList.java.

34  {
35  super(new DocumentByEntityComparator());
36  }

Member Function Documentation

◆ fillList()

void org.turro.entities.portfolio.DocumentByEntityList.fillList ( List< String >  entityPaths)

Definition at line 38 of file DocumentByEntityList.java.

38  {
39  WhereClause wc = new WhereClause();
40  wc.addClause("select doc from Document doc");
41  wc.addIn("where", "doc.relatedPath", entityPaths);
42  Dao dao = new FinancialsPU();
43  addAll(dao.getResultList(wc));
44  }
Here is the call graph for this function:

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