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

📄 internalbindingvalue.java

📁 java1.6众多例子参考
💻 JAVA
字号:
/* * @(#)InternalBindingValue.java	1.25 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.impl.naming.cosnaming;import org.omg.CORBA.Object;import org.omg.CosNaming.Binding;import org.omg.CosNaming.NameComponent;/** * Class InternalBindingKey acts as a container for two objects, namely * a org.omg.CosNaming::Binding and an CORBA object reference, which are the two * components associated with the binding. */public class InternalBindingValue{    public Binding theBinding;    public String strObjectRef;    public org.omg.CORBA.Object theObjectRef;      // Default constructor    public InternalBindingValue() {}    // Normal constructor    public InternalBindingValue(Binding b, String o) {	theBinding = b;	strObjectRef = o;    }}

⌨️ 快捷键说明

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