01: /*****************************************************************************
02: * Copyright (C) NanoContainer Organization. All rights reserved. *
03: * ------------------------------------------------------------------------- *
04: * The software in this package is published under the terms of the BSD *
05: * style license a copy of which has been included with this distribution in *
06: * the LICENSE.txt file. *
07: * *
08: *****************************************************************************/package org.nanocontainer.script.xml;
09:
10: public class TestBeanComposer {
11:
12: private TestBean bean1;
13: private TestBean bean2;
14:
15: public TestBeanComposer(TestBean bean1, TestBean bean2) {
16: this .bean1 = bean1;
17: this .bean2 = bean2;
18: }
19:
20: public TestBean getBean1() {
21: return bean1;
22: }
23:
24: public TestBean getBean2() {
25: return bean2;
26: }
27: }
|