01: /*
02: * Copyright 1999-2004 The Apache Software Foundation
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16: package org.apache.commons.jxpath.ri.model.dynabeans;
17:
18: import org.apache.commons.beanutils.DynaBean;
19: import org.apache.commons.jxpath.AbstractFactory;
20: import org.apache.commons.jxpath.JXPathContext;
21: import org.apache.commons.jxpath.NestedTestBean;
22: import org.apache.commons.jxpath.Pointer;
23:
24: /**
25: * Test AbstractFactory.
26: *
27: * @author Dmitri Plotnikov
28: * @version $Revision: 1.8 $ $Date: 2004/02/29 14:17:44 $
29: */
30: public class TestDynaBeanFactory extends AbstractFactory {
31:
32: /**
33: */
34: public boolean createObject(JXPathContext context, Pointer pointer,
35: Object parent, String name, int index) {
36: if (name.equals("nestedBean")) {
37: ((DynaBean) parent).set("nestedBean", new NestedTestBean(
38: "newName"));
39: return true;
40: } else if (name.equals("beans")) {
41: DynaBean bean = (DynaBean) parent;
42: Object beans[] = (Object[]) bean.get("beans");
43: if (beans == null || index >= beans.length) {
44: beans = new NestedTestBean[index + 1];
45: bean.set("beans", beans);
46: }
47: beans[index] = new NestedTestBean("newName");
48: return true;
49: } else if (name.equals("integers")) {
50: DynaBean bean = (DynaBean) parent;
51: bean.set("integers", index, new Integer(0));
52: return true;
53: }
54: return false;
55: }
56:
57: /**
58: */
59: public boolean declareVariable(JXPathContext context, String name) {
60: context.getVariables().declareVariable(name, null);
61: return true;
62: }
63: }
|