1. /*
  2. * @(#)StreamableValue.java 1.8 00/02/02
  3. *
  4. * Copyright 1999, 2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package org.omg.CORBA.portable;
  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.8 02/02/00
  21. */
  22. public interface StreamableValue extends Streamable, ValueBase {
  23. }