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

Public Member Functions

 DocumentAmountsGrid ()
 
 DocumentAmountsGrid (Document document)
 
Document getDocument ()
 
void setDocument (Document document)
 
void updateDocument (Document document)
 
void afterCompose ()
 
- Public Member Functions inherited from org.turro.zkoss.grid.CollectionGrid< V >
 CollectionGrid ()
 
 CollectionGrid (Collection< V > collection)
 
Collection< V > getCollection ()
 
void setCollection (Collection< V > collection)
 
void updateCollection (Collection< V > collection)
 
Row getDependingRow ()
 
void setDependingRow (Row dependingRow)
 
void clearTable ()
 
void deleteSelectedRow (Row row)
 
- Public Member Functions inherited from org.turro.zkoss.grid.EditableGrid< V >
 EditableGrid ()
 
boolean isAllowDeletions ()
 
void setAllowDeletions (boolean allowDeletions)
 
boolean isAllowInsertions ()
 
void setAllowInsertions (boolean allowInsertions)
 
EditableCell getCurrentCell ()
 
Row getLastRow ()
 
boolean isReadOnly ()
 
void setReadOnly (boolean readOnly)
 
boolean isSelectInput ()
 
void setSelectInput (boolean selectInput)
 
boolean isShowZeros ()
 
void setShowZeros (boolean showZeros)
 
void clearFoot ()
 
void clearRows ()
 
void clearValidRows ()
 
void clearColumns ()
 
List< V > getValues ()
 
List< V > getAllValues ()
 
EventListener getEditListener ()
 
EventListener getNextListener ()
 
EventListener getKeyListener ()
 
EventListener getBlurListener ()
 
EventListener getCancelListener ()
 
void processEdition (EditableCell editableCell)
 
void cancelEdition ()
 
HtmlBasedComponent getEditor (EditableCell editableCell)
 
Row appendValue ()
 
Row addNewRow ()
 
void insertInSelectedRow (Row row)
 
Column getEditableColumn (int cellIndex)
 
void updateRow (Row row)
 
void updateRows ()
 
EditableColumn addColumn (String label, Class javaClass, String property, String format, int scale, boolean onlyDate, boolean readOnly)
 
EditableColumn addColumn (String label, String javaClass, String property, String format, int scale, boolean onlyDate, boolean readOnly) throws ClassNotFoundException
 
EditableColumn addColumn (String image, String tooltip, Class javaClass, String property, String format, int scale, boolean onlyDate, boolean readOnly)
 
EditableColumn addColumn (String image, String tooltip, String javaClass, String property, String format, int scale, boolean onlyDate, boolean readOnly) throws ClassNotFoundException
 
- Public Member Functions inherited from org.turro.zkoss.grid.PagingGrid
void setColumns (int columns)
 
void setColumns (String hflexs)
 
void refine ()
 
boolean isDefaultBehavior ()
 
void setDefaultBehavior (boolean defaultBehavior)
 
String getRefineValue ()
 
void setRefineValue (String value)
 
int getMaxResults ()
 
void setMaxResults (int maxResults)
 
String getPagingMold ()
 
void setPagingMold (String pagingMold)
 
int getRowCount ()
 
void setRowCount (int rows)
 
void setHeadersVisible (boolean value)
 
boolean isHeadersVisible ()
 
String getVarColumns ()
 
void setVarColumns (String varColumns)
 
Collection< String > getVarColumnsList (String defaultCols)
 
void addDetailColumn ()
 
void addDetailColumn (HtmlBasedComponent caption)
 
void openDetails ()
 
boolean isEmpty ()
 
void clearEmptyGroups ()
 
Columns getColumns (boolean create)
 
Rows getRows (boolean create)
 
Foot getFoot (boolean create)
 
Foot createFoot ()
 
void exportToPdf ()
 

Protected Member Functions

void initiateRow (Row row, Amount value)
 
boolean deleteRow (Row row)
 
boolean isValid (Amount v)
 
- Protected Member Functions inherited from org.turro.zkoss.grid.CollectionGrid< V >
void cellChanged (EditableCell editableCell, Object value)
 
void rowChanged (Row row)
 
boolean filterValue (V v)
 
- Protected Member Functions inherited from org.turro.zkoss.grid.EditableGrid< V >
Object getCellValue (EditableCell editableCell)
 
Object getEditorValue (EditableCell editableCell)
 
void setCellValue (EditableCell editableCell, Object value)
 
String formatCell (EditableCell editableCell, Object value)
 
HtmlBasedComponent createEditor (EditableCell editableCell)
 
HtmlBasedComponent createRenderer (EditableCell editableCell)
 
boolean isCellValid (EditableCell editableCell, Object value)
 
boolean canDeleteRow (Row row)
 
boolean canEditRow (Row row)
 
abstract void initiateRow (Row row, V value)
 
abstract boolean isValid (V v)
 

Additional Inherited Members

- Public Attributes inherited from org.turro.zkoss.grid.EditableGrid< V >
EditEventListener editListener
 
NextEventListener nextListener
 
KeyEventListener keyListener
 
CancelEventListener cancelListener
 
BlurEventListener blurListener
 
boolean allowInsertions
 
- Protected Attributes inherited from org.turro.zkoss.grid.CollectionGrid< V >
Row dependingRow
 
- Protected Attributes inherited from org.turro.zkoss.grid.EditableGrid< V >
EditableCell currentCell
 
String ctrlKeys
 
Row lastRow
 

Detailed Description

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

Definition at line 33 of file DocumentAmountsGrid.java.

Constructor & Destructor Documentation

◆ DocumentAmountsGrid() [1/2]

org.turro.financials.document.DocumentAmountsGrid.DocumentAmountsGrid ( )

Definition at line 37 of file DocumentAmountsGrid.java.

37  {
38  super();
39  }

◆ DocumentAmountsGrid() [2/2]

org.turro.financials.document.DocumentAmountsGrid.DocumentAmountsGrid ( Document  document)

Definition at line 41 of file DocumentAmountsGrid.java.

41  {
42  super();
43  setDocument(document);
44  }
Here is the call graph for this function:

Member Function Documentation

◆ afterCompose()

void org.turro.financials.document.DocumentAmountsGrid.afterCompose ( )

Reimplemented from org.turro.zkoss.grid.CollectionGrid< V >.

Definition at line 77 of file DocumentAmountsGrid.java.

77  {
78  setReadOnly(true);
79  if(document.getDocumentDefinition() != null) {
80  try {
81  addColumns();
82  } catch (ClassNotFoundException ex) {
83  Logger.getLogger(DocumentAmountsGrid.class.getName()).log(Level.SEVERE, ElephantContext.logMsg(null), ex);
84  }
85  }
86  super.afterCompose();
87  }
DocumentDefinition getDocumentDefinition()
Definition: Document.java:167
void setReadOnly(boolean readOnly)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ deleteRow()

boolean org.turro.financials.document.DocumentAmountsGrid.deleteRow ( Row  row)
protected

Reimplemented from org.turro.zkoss.grid.EditableGrid< V >.

Definition at line 67 of file DocumentAmountsGrid.java.

67  {
68  throw new UnsupportedOperationException("Not supported yet.");
69  }

◆ getDocument()

Document org.turro.financials.document.DocumentAmountsGrid.getDocument ( )

Definition at line 46 of file DocumentAmountsGrid.java.

46  {
47  return document;
48  }

◆ initiateRow()

void org.turro.financials.document.DocumentAmountsGrid.initiateRow ( Row  row,
Amount  value 
)
protected

Definition at line 62 of file DocumentAmountsGrid.java.

62  {
63  row.setValue(value);
64  }

◆ isValid()

boolean org.turro.financials.document.DocumentAmountsGrid.isValid ( Amount  v)
protected

Definition at line 72 of file DocumentAmountsGrid.java.

72  {
73  return true;
74  }

◆ setDocument()

void org.turro.financials.document.DocumentAmountsGrid.setDocument ( Document  document)

Definition at line 50 of file DocumentAmountsGrid.java.

50  {
51  this.document = document;
52  //setCollection(document.getAmountSet());
53  }
Here is the caller graph for this function:

◆ updateDocument()

void org.turro.financials.document.DocumentAmountsGrid.updateDocument ( Document  document)

Definition at line 55 of file DocumentAmountsGrid.java.

Here is the call graph for this function:

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