-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
57 lines (31 loc) · 924 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
This is the SAVARA web console.
=== Build ==
Run:
mvn clean install
=== Debug/Run in hosted mode ===
Go to the console folder, run:
mvn gwt:run
PS: icons are found at here: http://findicons.com/pack/1581/silk
How do I choose between onReveal() and onReset()?
=================================================
onReset is called whenever a new Presenter is requested,
even if the current Presenter is visible. onReveal is called whenever the Presenter is revealed.
In what order are the Presenter methods called?
===============================================
On First load:
Constructor
onBind
prepareFromRequest
revealInParent
onReveal
onReset
prepareRequest
On Hiding:
onHide
On Subsequent Reveals:
prepareFromRequest
revealInParent
onReveal
onReset
prepareRequest
(Taken from http://code.google.com/p/gwt-platform/wiki/FrequentlyAskedQuestions)