1. /*
  2. * @(#)CustomValue.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. /**
  11. * Defines the base interface for all custom value types
  12. * generated from IDL.
  13. *
  14. * All value types implement ValueBase either directly
  15. * or indirectly by implementing either the StreamableValue
  16. * or CustomValue interface.
  17. * @author OMG
  18. * @version 1.8 02/02/00
  19. */
  20. package org.omg.CORBA.portable;
  21. import org.omg.CORBA.CustomMarshal;
  22. public interface CustomValue extends ValueBase, CustomMarshal {
  23. }