2009/05/20 - Apache Shale has been retired.
For more information, please explore the Attic.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package org.apache.shale.usecases.subview;
19
20 import java.util.Map;
21
22 import javax.faces.context.FacesContext;
23
24 import org.apache.commons.logging.Log;
25 import org.apache.commons.logging.LogFactory;
26 import org.apache.shale.view.AbstractViewController;
27
28 /***
29 * <p>First included page for subview processing use case.</p>
30 *
31 * $Id: Alpha.java 464373 2006-10-16 04:21:54Z rahul $
32 */
33 public class Alpha extends AbstractViewController {
34
35
36
37
38
39 /***
40 * <p>The <code>Log</code> instance for this class.</p>
41 */
42 private static final Log log = LogFactory.getLog(Alpha.class);
43
44
45
46
47
48 public void destroy() {
49
50 record("destroy(alpha)");
51
52 }
53
54
55 public void init() {
56
57 record("init(alpha)");
58
59 }
60
61
62 public void preprocess() {
63
64 record("preprocess(alpha)");
65
66 }
67
68
69 public void prerender() {
70
71 record("prerender(alpha)");
72
73 }
74
75
76
77
78
79 private void record(String text) {
80
81 if (log.isDebugEnabled()) {
82 log.debug(text);
83 }
84 Map map = FacesContext.getCurrentInstance().getExternalContext().getRequestMap();
85 String actual = (String) map.get("actual");
86 if (actual == null) {
87 actual = "";
88 }
89 map.put("actual", actual + text + "/");
90
91 }
92
93
94 }