KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > corba > se > impl > util > SUNVMCID


1 /*
2  * @(#)SUNVMCID.java 1.12 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 com.sun.corba.se.impl.util;
9
10 /**
11  * The vendor minor code ID reserved for Sun by the OMG.
12  * All VMCIDs occupy the high order 20 bits.
13  */

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

22     static final int value = 0x53550000;
23 }
24
Popular Tags