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: ClassOverriding.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 ClassOverriding extends Element {
14: public void processElement() {
15: if (hasInputValue("switch")) {
16: setOutput("output1", "output1" + getInput("switch"));
17: exit(getInput("switch"));
18: }
19:
20: print("ClassOverriding");
21: print(getPropertyString("property1"));
22: print(getPropertyString("property2"));
23: print(getInput("input1"));
24: print(getInput("input2"));
25: print(getCookie("incookie1").getValue());
26: print(getCookie("incookie2").getValue());
27: if (hasSubmission("submission1")) {
28: print(getParameter("param1"));
29: print(getParameter("param2"));
30: }
31: setCookie(new Cookie("outcookie1", "outcookie1elementvalue"));
32: }
33: }
|