BrightSide Workbench Full Report + Source Code
org.turro.contacts.zul.proposal.ProposalGrid Class Reference
Inheritance diagram for org.turro.contacts.zul.proposal.ProposalGrid:
Collaboration diagram for org.turro.contacts.zul.proposal.ProposalGrid:

Public Member Functions

 ProposalGrid ()
 
Contact getDestination ()
 
void setDestination (Contact destination)
 
ContactProposal getProposal ()
 
void setProposal (ContactProposal proposal)
 
void reload ()
 

Detailed Description

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

Definition at line 33 of file ProposalGrid.java.

Constructor & Destructor Documentation

◆ ProposalGrid()

org.turro.contacts.zul.proposal.ProposalGrid.ProposalGrid ( )

Definition at line 38 of file ProposalGrid.java.

38  {
39  Columns cols = new Columns();
40  cols.setSizable(true);
41  cols.setMenupopup("auto");
42  appendChild(cols);
43 
44  Column col;
45 
46  col = new Column("");
47  col.setWidth("40px");
48  cols.appendChild(col);
49 
50  col = new Column("");
51  cols.appendChild(col);
52  }

Member Function Documentation

◆ getDestination()

Contact org.turro.contacts.zul.proposal.ProposalGrid.getDestination ( )

Definition at line 54 of file ProposalGrid.java.

54  {
55  return proposal.getDestination();
56  }
Here is the call graph for this function:

◆ getProposal()

ContactProposal org.turro.contacts.zul.proposal.ProposalGrid.getProposal ( )

Definition at line 63 of file ProposalGrid.java.

63  {
64  return proposal;
65  }

◆ reload()

void org.turro.contacts.zul.proposal.ProposalGrid.reload ( )

Definition at line 72 of file ProposalGrid.java.

72  {
73  if(proposal != null) {
74  proposal.reload();
75  }
76  updateRows();
77  }
Here is the call graph for this function:

◆ setDestination()

void org.turro.contacts.zul.proposal.ProposalGrid.setDestination ( Contact  destination)

Definition at line 58 of file ProposalGrid.java.

58  {
59  proposal.setDestination(destination);
60  updateRows();
61  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ setProposal()

void org.turro.contacts.zul.proposal.ProposalGrid.setProposal ( ContactProposal  proposal)

Definition at line 67 of file ProposalGrid.java.

67  {
68  this.proposal = proposal;
69  updateRows();
70  }

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