📄 internalbindingvalue.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 + -