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