BrightSide Workbench Full Report + Source Code
org.turro.elephant.zkoss.ModalWindow Class Reference
Inheritance diagram for org.turro.elephant.zkoss.ModalWindow:
Collaboration diagram for org.turro.elephant.zkoss.ModalWindow:

Public Member Functions

 ModalWindow (String title, String border, boolean closable)
 
 ModalWindow ()
 
int getResult ()
 
void setResult (int result)
 
Object getResultValue ()
 
void setResultValue (Object resultValue)
 
void show (Page page, Command command)
 

Protected Attributes

int result
 
Object resultValue
 

Detailed Description

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

Definition at line 28 of file ModalWindow.java.

Constructor & Destructor Documentation

◆ ModalWindow() [1/2]

org.turro.elephant.zkoss.ModalWindow.ModalWindow ( String  title,
String  border,
boolean  closable 
)

Definition at line 33 of file ModalWindow.java.

33  {
34  super(title, border, closable);
35  //setMode("modal");
36  }

◆ ModalWindow() [2/2]

org.turro.elephant.zkoss.ModalWindow.ModalWindow ( )

Definition at line 38 of file ModalWindow.java.

38  {
39  super();
40  //setMode("modal");
41  }

Member Function Documentation

◆ getResult()

int org.turro.elephant.zkoss.ModalWindow.getResult ( )

Definition at line 43 of file ModalWindow.java.

43  {
44  return result;
45  }
Here is the caller graph for this function:

◆ getResultValue()

Object org.turro.elephant.zkoss.ModalWindow.getResultValue ( )

Definition at line 51 of file ModalWindow.java.

51  {
52  return resultValue;
53  }
Here is the caller graph for this function:

◆ setResult()

void org.turro.elephant.zkoss.ModalWindow.setResult ( int  result)

Definition at line 47 of file ModalWindow.java.

47  {
48  this.result = result;
49  }

◆ setResultValue()

void org.turro.elephant.zkoss.ModalWindow.setResultValue ( Object  resultValue)

Definition at line 55 of file ModalWindow.java.

55  {
56  this.resultValue = resultValue;
57  }

◆ show()

void org.turro.elephant.zkoss.ModalWindow.show ( Page  page,
Command  command 
)

Definition at line 59 of file ModalWindow.java.

59  {
60  setPage(page);
61  Modal.doModal(this, command);
62  }
Here is the call graph for this function:

Member Data Documentation

◆ result

int org.turro.elephant.zkoss.ModalWindow.result
protected

Definition at line 30 of file ModalWindow.java.

◆ resultValue

Object org.turro.elephant.zkoss.ModalWindow.resultValue
protected

Definition at line 31 of file ModalWindow.java.


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