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; 22 /** 23 * An extension of <code>ValueBase</code> that is implemented by custom value 24 * types. 25 */ 26 public interface CustomValue extends ValueBase, CustomMarshal { 27 28 } 29 30