KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > openccm > Containers > MetaInformation > InterfaceInstanceListImpl


1 /*====================================================================
2
3 created on 18 ao?t 2003
4 OpenCCM: The Open CORBA Component Model Platform
5 Copyright (C) 2001-2002 USTL - LIFL - GOAL
6 Contact: openccm-team@objectweb.org
7
8 This library is free software; you can redistribute it and/or
9 modify it under the terms of the GNU Lesser General Public
10 License as published by the Free Software Foundation; either
11 version 2.1 of the License, or any later version.
12
13 This library is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public
19 License along with this library; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21 USA
22
23 Initial developer(s): Hameau Fabien.
24 Contributor(s): ______________________________________.
25
26 */

27 package org.objectweb.openccm.Containers.MetaInformation;
28
29 import org.objectweb.ccm.util.Table;
30 import org.omg.CORBA.LocalObject JavaDoc;
31 import org.omg.Components.InvalidName;
32
33 /**
34  * @author hameau
35  *
36  * To change the template for this generated type comment go to
37  * Window>Preferences>Java>Code Generation>Code and Comments
38  */

39 public class InterfaceInstanceListImpl
40 extends LocalObject JavaDoc
41 implements InterfaceInstanceList
42 {
43   private Table _interfaces;
44   
45   public InterfaceInstanceListImpl()
46   {
47     _interfaces = new Table();
48   }
49
50   /* (non-Javadoc)
51    * @see org.objectweb.openccm.Containers.MetaInformation.InterfaceInstanceListOperations#get_interface_instance(java.lang.String)
52    */

53   public InterfaceInstance
54   get_interface_instance(String JavaDoc name)
55   throws InvalidName
56   {
57     InterfaceInstance result = (InterfaceInstance) _interfaces.get(name);
58     if(result == null)
59       throw new InvalidName();
60     return result;
61   }
62
63   /* (non-Javadoc)
64    * @see org.objectweb.openccm.Containers.MetaInformation.InterfaceInstanceListOperations#get_named_interface_instances(java.lang.String[])
65    */

66   public InterfaceInstance[]
67   get_named_interface_instances(String JavaDoc[] names)
68   throws InvalidName
69   {
70     InterfaceInstance[] result = new InterfaceInstance[names.length];
71
72    // Iterate on all the connections.
73

74    int i = 0;
75    for(i=0;i<names.length;i++)
76    {
77      result[i] = (InterfaceInstance)_interfaces.get(names[i]);
78    
79      if(result[i] == null)
80      {
81        throw new InvalidName();
82      }
83     }
84  
85    return result;
86   }
87
88   /* (non-Javadoc)
89    * @see org.objectweb.openccm.Containers.MetaInformation.InterfaceInstanceListOperations#get_all_interface_instances()
90    */

91   public InterfaceInstance[]
92   get_all_interface_instances()
93   {
94     InterfaceInstance[] result = new InterfaceInstance[_interfaces.size()];
95
96      // Iterate on all the connections.
97
int idx = 0;
98      for(java.util.Enumeration JavaDoc elements = _interfaces.elements(); elements.hasMoreElements(); )
99      {
100        InterfaceInstance info = (InterfaceInstance)elements.nextElement();
101          result[idx++] = info;
102      }
103      return result;
104   }
105
106   /* (non-Javadoc)
107    * @see org.objectweb.openccm.Containers.MetaInformation.InterfaceInstanceListOperations#add_interface_instance(org.objectweb.openccm.Containers.MetaInformation.InterfaceInstance)
108    */

109   public void add_interface_instance(InterfaceInstance cpi)
110   {
111     
112     String JavaDoc key = cpi.type_reference().name() + cpi.toString().substring(cpi.toString().lastIndexOf("@"));
113     _interfaces.put(new String JavaDoc(cpi.type_reference().name()+cpi),cpi);
114   
115   }
116
117   /* (non-Javadoc)
118    * @see org.objectweb.openccm.Containers.MetaInformation.InterfaceInstanceListOperations#remove_interface_instance(java.lang.String)
119    */

120   public void remove_interface_instance(String JavaDoc name)
121   throws InvalidName
122   {
123     Object JavaDoc result = _interfaces.remove(name);
124   
125     if (result == null) throw new InvalidName();
126   }
127 }
128
Popular Tags