01: /*
02: * Copyright 2001-2007 Geert Bevin <gbevin[remove] at uwyn dot com>
03: * Distributed under the terms of either:
04: * - the common development and distribution license (CDDL), v1.0; or
05: * - the GNU Lesser General Public License, v2.1 or later
06: * $Id: MultipleLevels.java 3634 2007-01-08 21:42:24Z gbevin $
07: */
08: package com.uwyn.rife.engine.testelements.extending;
09:
10: import com.uwyn.rife.engine.Element;
11: import javax.servlet.http.Cookie;
12:
13: public class MultipleLevels extends Element {
14: public void processElement() {
15: if (hasInputValue("switch")) {
16: setOutput("output1", "output1" + getInput("switch"));
17: setOutput("output3", "output3" + getInput("switch"));
18: exit(getInput("switch"));
19: }
20:
21: print("MultipleLevels");
22: print(getPropertyString("property1"));
23: print(getPropertyString("property2"));
24: print(getPropertyString("property3"));
25: print(getPropertyString("property4"));
26: print(getInput("input1"));
27: print(getInput("input2"));
28: print(getInput("input3"));
29: print(getInput("input4"));
30: print(getCookie("incookie1").getValue());
31: print(getCookie("incookie2").getValue());
32: print(getCookie("incookie3").getValue());
33: print(getCookie("incookie4").getValue());
34: if (hasSubmission("submission1")) {
35: print(getParameter("param1"));
36: print(getParameter("param2"));
37: }
38: if (hasSubmission("submission2")) {
39: print(getParameter("param1"));
40: print(getParameter("param2"));
41: }
42: setCookie(new Cookie("outcookie1", "outcookie1elementvalue"));
43: setCookie(new Cookie("outcookie3", "outcookie3elementvalue"));
44: }
45: }
|