1 /* 2 * @(#)StreamableValue.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 9 package org.omg.CORBA.portable; 10 11 /** 12 * Defines the base type for all non-boxed IDL valuetypes 13 * that are not custom marshaled. 14 * 15 * All value types implement ValueBase either directly or 16 * indirectly by implementing either the 17 * StreamableValue or CustomValue interface. 18 * 19 * @author OMG 20 * @version 1.12 12/19/03 21 */ 22 public interface StreamableValue extends Streamable, ValueBase { 23 24 } 25 26