binding.java

来自「gcc3.2.1源代码」· Java 代码 · 共 69 行

JAVA
69
字号
/* Copyright (C) 2001 Free Software Foundation   This file is part of libgcj.This software is copyrighted work licensed under the terms of theLibgcj License.  Please consult the file "LIBGCJ_LICENSE" fordetails.  */package javax.naming;/** * @author Tom Tromey <tromey@redhat.com> * @date May 16, 2001 */public class Binding extends NameClassPair{  public Binding (String name, Object obj)  {    super (name, null);    boundObj = obj;  }  public Binding (String name, Object obj, boolean isRelative)  {    super (name, null, isRelative);    boundObj = obj;  }  public Binding (String name, String className, Object obj)  {    super (name, className);    boundObj = obj;  }  public Binding (String name, String className, Object obj,		  boolean isRelative)  {    super (name, className, isRelative);    boundObj = obj;  }  public String getClassName ()  {    String r = super.getClassName ();    if (r != null)      return r;    return boundObj == null ? null : boundObj.getClass ().getName ();  }  public Object getObject ()  {    return boundObj;  }  public void setObject (Object obj)  {    boundObj = obj;  }  public String toString ()  {    // Format specified by the documentation.    return super.toString () + ":" + boundObj.toString ();  }  // This name is fixed by the serialization spec.  private Object boundObj;}

⌨️ 快捷键说明

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