1. /*
  2. * @(#)VM_ABSTRACT.java 1.8 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 an Abstract interface in
  9. * a typecode.
  10. * This is one of the possible results of the <code>type_modified</code>
  11. * method on the <code>TypeCode</code> interface.
  12. * @see org.omg.CORBA.TypeCode
  13. * @version 1.8 12/19/03
  14. */
  15. public interface VM_ABSTRACT {
  16. /** The value representing an abstract interface value type in
  17. * a typecode.
  18. */
  19. final short value = (short) (2L);
  20. }