KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * @(#)BoxedValueHelper.java 1.12 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  * Licensed Materials - Property of IBM
9  * RMI-IIOP v1.0
10  * Copyright IBM Corp. 1998 1999 All Rights Reserved
11  *
12  * US Government Users Restricted Rights - Use, duplication or
13  * disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
14  */

15
16 package org.omg.CORBA.portable;
17 import java.io.Serializable JavaDoc;
18
19 public interface BoxedValueHelper {
20     Serializable JavaDoc read_value(InputStream JavaDoc is);
21     void write_value(OutputStream JavaDoc os, Serializable JavaDoc value);
22     String JavaDoc get_id();
23 }
24
Popular Tags