View Javadoc

1   /*
2    * Created on Nov 21, 2004
3    *
4    * This library is free software; you can redistribute it and/or
5    * modify it under the terms of the GNU Lesser General Public
6    * License as published by the Free Software Foundation; either
7    * version 2.1 of the License, or (at your option) any later version.
8    * 
9    * This library is distributed in the hope that it will be useful,
10   * but WITHOUT ANY WARRANTY; without even the implied warranty of
11   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12   * Lesser General Public License for more details.
13   * 
14   * Full GNU LGPL license terms : http://www.gnu.org/copyleft/lesser.txt
15   * 
16   * Project : iky-container
17   * Package : net.wmind.container.model
18   * Author : mchaplin@users.sourceforge.net
19   */
20  package net.mchaplin.ioc.model;
21  
22  import java.util.ArrayList;
23  
24  import net.mchaplin.ioc.ContainerI;
25  import net.mchaplin.ioc.component.ComponentI;
26  
27  /***
28   * @author mchaplin@users.sourceforge.net
29   * 
30   * $Header: 
31   * $Revision: 
32   * $Date: 
33   */
34  public class Container extends Component implements ComponentI {
35      
36      private ArrayList containers = null;
37      private ArrayList components = null;
38  
39      /***
40       * @return Returns the containers.
41       */
42      public ArrayList getContainers() {
43          return containers;
44      }
45      /***
46       * @param containers The containers to set.
47       */
48      public void setContainers(ArrayList containers) {
49          this.containers = containers;
50      }
51      /***
52       * @return Returns the components.
53       */
54      public ArrayList getComponents() {
55          return components;
56      }
57      /***
58       * @param components The components to set.
59       */
60      public void setComponents(ArrayList components) {
61          this.components = components;
62      }
63      /* (non-Javadoc)
64       * @see net.mchaplin.ioc.component.ComponentI#getContainer()
65       */
66      public ContainerI getContainer() {
67          // TODO Auto-generated method stub
68          return null;
69      }
70      /* (non-Javadoc)
71       * @see net.mchaplin.ioc.component.ComponentI#reset()
72       */
73      public void reset() {
74          // TODO Auto-generated method stub
75          
76      }
77      /* (non-Javadoc)
78       * @see net.mchaplin.ioc.component.ComponentI#setContainer(net.mchaplin.ioc.ContainerI)
79       */
80      public void setContainer(ContainerI container) {
81          // TODO Auto-generated method stub
82          
83      }
84      
85      
86  }