1. /*
  2. * @(#)VM_NONE.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. /**
  9. * Defines the code used to represent the one of the values of a value type
  10. * in a typecode.
  11. *
  12. * @author OMG
  13. * @see org.omg.CORBA.TypeCode
  14. * @version 1.9 12/19/03
  15. * @since JDK1.2
  16. */
  17. public interface VM_NONE {
  18. /**
  19. * The value representing the value type in a typecode as per
  20. * CORBA 2.3 spec.
  21. */
  22. final short value = (short) (0L);
  23. }