⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cookieholder.java

📁 java1.6众多例子参考
💻 JAVA
字号:
/* * @(#)CookieHolder.java	1.9 05/11/17 * * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package org.omg.PortableServer.ServantLocatorPackage;/** * The native type PortableServer::ServantLocator::Cookie is mapped  * to java.lang.Object. A CookieHolder class is provided for passing  * the Cookie type as an out parameter. The CookieHolder class  * follows exactly the same pattern as the other holder classes  * for basic types. */final public class CookieHolder implements org.omg.CORBA.portable.Streamable{    public java.lang.Object value;    public CookieHolder() { }    public CookieHolder(java.lang.Object initial) {	value = initial;    }    public void _read( org.omg.CORBA.portable.InputStream is) {        throw new org.omg.CORBA.NO_IMPLEMENT();    }     public void _write( org.omg.CORBA.portable.OutputStream os) {        throw new org.omg.CORBA.NO_IMPLEMENT();    }     public org.omg.CORBA.TypeCode _type() {        throw new org.omg.CORBA.NO_IMPLEMENT();    } }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -