📄 iiopoutputstream.java
字号:
/* * @(#)IIOPOutputStream.java 1.3 05/11/17 * * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.corba.se.internal.io;public class IIOPOutputStream { /* Create a pending exception. This is needed to get around * the fact that the *Delegate methods do not explicitly * declare that they throw exceptions. * * This native method creates an exception of the given type with * the given message string and posts it to the pending queue. */ private static native void throwExceptionType(Class c, String message); private static native Object getObjectFieldOpt(Object o, long fieldID); private static native boolean getBooleanFieldOpt(Object o, long fieldID); private static native byte getByteFieldOpt(Object o, long fieldID); private static native char getCharFieldOpt(Object o, long fieldID); private static native short getShortFieldOpt(Object o, long fieldID); private static native int getIntFieldOpt(Object o, long fieldID); private static native long getLongFieldOpt(Object o, long fieldID); private static native float getFloatFieldOpt(Object o, long fieldID); private static native double getDoubleFieldOpt(Object o, long fieldID); private static native void writeObject(Object obj, Class asClass, Object oos) throws IllegalAccessException;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -