internalbindingvalue.java
来自「JAVA 所有包」· Java 代码 · 共 34 行
JAVA
34 行
/* * @(#)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 + =
减小字号Ctrl + -
显示快捷键?