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