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