1 /* 2 * @(#)LibraryManager.java 1.30 01/12/03 3 * 4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 */ 7 /* 8 * Licensed Materials - Property of IBM 9 * RMI-IIOP v1.0 10 * Copyright IBM Corp. 1998 1999 All Rights Reserved 11 * 12 * US Government Users Restricted Rights - Use, duplication or 13 * disclosure restricted by GSA ADP Schedule Contract with IBM Corp. 14 */ 15 16 package com.sun.corba.se.internal.io; 17 18 public class LibraryManager 19 { 20 native private static int getMajorVersion(); 21 22 native private static int getMinorVersion(); 23 24 private static native boolean setEnableOverride(Class targetClass, Object instance); 25 } 26