1. /*
  2. * @(#)CustomValue.java 1.12 03/01/23
  3. *
  4. * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. /**
  8. * Defines the base interface for all custom value types
  9. * generated from IDL.
  10. *
  11. * All value types implement ValueBase either directly
  12. * or indirectly by implementing either the StreamableValue
  13. * or CustomValue interface.
  14. * @author OMG
  15. * @version 1.12 01/23/03
  16. */
  17. package org.omg.CORBA.portable;
  18. import org.omg.CORBA.CustomMarshal;
  19. /**
  20. * An extension of <code>ValueBase</code> that is implemented by custom value
  21. * types.
  22. */
  23. public interface CustomValue extends ValueBase, CustomMarshal {
  24. }