KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > omg > CORBA > OMGVMCID


1 /*
2  * @(#)OMGVMCID.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
8 package org.omg.CORBA;
9
10 /**
11  * The vendor minor code ID reserved for OMG. Minor codes for the standard
12  * exceptions are prefaced by the VMCID assigned to OMG, defined as the
13  * constant OMGVMCID, which, like all VMCIDs, occupies the high order 20 bits.
14  */

15
16 public interface OMGVMCID {
17
18     /**
19      * The vendor minor code ID reserved for OMG. This value is or'd with
20      * the high order 20 bits of the minor code to produce the minor value
21      * in a system exception.
22      */

23     static final int value = 0x4f4d0000;
24 }
25
26
Popular Tags