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