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: BeanParentOutjection.java 3634 2007-01-08 21:42:24Z gbevin $
07: */
08: package com.uwyn.rife.engine.testelements.inheritance;
09:
10: import com.uwyn.rife.engine.Element;
11: import com.uwyn.rife.engine.testelements.outputs.BeanImpl;
12:
13: public class BeanParentOutjection extends Element {
14: private BeanImpl mOutbean = null;
15:
16: public BeanImpl getOutbean() {
17: return mOutbean;
18: }
19:
20: public void processElement() {
21: if (hasSubmission("activatechild")) {
22: BeanImpl bean = new BeanImpl();
23: bean.setLong(34347897L);
24: mOutbean = bean;
25: return;
26: }
27:
28: print("<html><body><a href=\""
29: + getSubmissionQueryUrl("activatechild")
30: + "\">activate child</a></body></html>");
31: }
32:
33: public boolean childTriggered(String name, String[] values) {
34: if (name.equals("long") && Long.parseLong(values[0]) > 20) {
35: return true;
36: } else {
37: return false;
38: }
39: }
40: }
|