001    /*****************************************************************************
002     * Copyright (C) PicoContainer Organization. All rights reserved.            *
003     * ------------------------------------------------------------------------- *
004     * The software in this package is published under the terms of the BSD      *
005     * style license a copy of which has been included with this distribution in *
006     * the LICENSE.txt file.                                                     *
007     *                                                                           *
008     *****************************************************************************/
009    
010    package org.picocontainer.script.xml;
011    
012    public final class TestBeanComposer {
013    
014        private final TestBean bean1;
015        private final TestBean bean2;
016    
017        public TestBeanComposer(TestBean bean1, TestBean bean2) {
018            this.bean1 = bean1;
019            this.bean2 = bean2;
020        }
021    
022        public TestBean getBean1() {
023            return bean1;
024        }
025    
026        public TestBean getBean2() {
027            return bean2;
028        }
029    }