KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > omg > CORBA > portable > CustomValue


1 /*
2  * @(#)CustomValue.java 1.13 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 /**
9  * Defines the base interface for all custom value types
10  * generated from IDL.
11  *
12  * All value types implement ValueBase either directly
13  * or indirectly by implementing either the StreamableValue
14  * or CustomValue interface.
15  * @author OMG
16  * @version 1.13 12/19/03
17  */

18
19 package org.omg.CORBA.portable;
20
21 import org.omg.CORBA.CustomMarshal JavaDoc;
22 /**
23  * An extension of <code>ValueBase</code> that is implemented by custom value
24  * types.
25  */

26 public interface CustomValue extends ValueBase JavaDoc, CustomMarshal JavaDoc {
27
28 }
29
30
Popular Tags