1. /*
  2. * @(#)VM_CUSTOM.java 1.5 00/02/02
  3. *
  4. * Copyright 1995-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;
  11. /** Defines the code used to represent a custom marshalled value type in
  12. * a typecode.
  13. * This is one of the possible results of the <code>type_modifier</code>
  14. * method on the <code>TypeCode</code> interface.
  15. * @see org.omg.CORBA.TypeCode
  16. * @version 1.5 02/02/00
  17. */
  18. public interface VM_CUSTOM {
  19. /** The value representing a custom marshalled value type in
  20. * a typecode.
  21. */
  22. final short value = (short) (1L);
  23. }