1 /* 2 * @(#)ValueInputStream.java 1.2 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 org.omg.CORBA.portable; 9 10 /** 11 * Java to IDL ptc 02-01-12 1.5.1.4 12 * 13 * ValueInputStream is used for implementing RMI-IIOP 14 * stream format version 2. 15 */ 16 public interface ValueInputStream { 17 18 /** 19 * The start_value method reads a valuetype 20 * header for a nested custom valuetype and 21 * increments the valuetype nesting depth. 22 */ 23 void start_value(); 24 25 /** 26 * The end_value method reads the end tag 27 * for the nested custom valuetype (after 28 * skipping any data that precedes the end 29 * tag) and decrements the valuetype nesting 30 * depth. 31 */ 32 void end_value(); 33 } 34 35