KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > corba > se > spi > ior > TaggedComponent


1 /*
2  * @(#)TaggedComponent.java 1.6 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package com.sun.corba.se.spi.ior;
9
10 import org.omg.CORBA_2_3.portable.OutputStream JavaDoc ;
11 import org.omg.CORBA.ORB JavaDoc ;
12
13 /** Generic interface for all tagged components. Users of the ORB may
14 * create implementations of this class and also corresponding factories
15 * of type TaggedComponentFactory. The factories can be registered with an
16 * ORB instance, in which case they will be used to unmarshal IORs containing
17 * the registered tagged component.
18 */

19 public interface TaggedComponent extends Identifiable
20 {
21     org.omg.IOP.TaggedComponent JavaDoc getIOPComponent( ORB JavaDoc orb ) ;
22 }
23
Popular Tags