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

📄 namedobject.java

📁 Mobile 应用程序使用 Java Micro Edition (Java ME) 平台
💻 JAVA
字号:
/* * @(#)NamedObject.java	1.33 05/11/17 *  * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.jmx.mbeanserver;import javax.management.* ;  /** * This class is used for storing a pair (name, object) where name is * an object name and object is a reference to the object. * * @since 1.5 * @since.unbundled JMX RI 1.2 */public class NamedObject  {     /**     * Object name.     */    private final ObjectName name;        /**     * Object reference.     */    private final DynamicMBean object;        /**     * Allows a named object to be created.     *     *@param objectName The object name of the object.          *@param object A reference to the object.     */    public NamedObject(ObjectName objectName, DynamicMBean object)  { 	if (objectName.isPattern()) {	    throw new RuntimeOperationsException(new IllegalArgumentException("Invalid name->"+ objectName.toString()));	}		this.name= objectName;	this.object= object;    }     /**     * Allows a named object to be created.     *     *@param objectName The string representation of the object name of the object.     *@param object A reference to the object.     *     *@exception MalformedObjectNameException The string passed does not have the format of a valid ObjectName     */    public NamedObject(String objectName, DynamicMBean object) throws MalformedObjectNameException{ 	ObjectName objName= new ObjectName(objectName);	if (objName.isPattern()) {	    throw new RuntimeOperationsException(new IllegalArgumentException("Invalid name->"+ objName.toString()));	}		this.name= objName;	this.object= object;	    }       /**     * Compares the current object name with another object name.     *     * @param object  The Named Object that the current object name is to be      *        compared with.     *     * @return  True if the two named objects are equal, otherwise false.     */    public boolean equals(Object object)  {        if (this == object) return true;        if (object == null) return false;        if (!(object instanceof NamedObject)) return false;        NamedObject no = (NamedObject) object;        return name.equals(no.getName());    }    /**     * Returns a hash code for this named object.     *     */       public int hashCode() {        return name.hashCode();    }    /**     * Get the object name.     */    public ObjectName getName()  { 	return name;    }        /**     * Get the object     */    public DynamicMBean getObject()  { 	return object;   }      }

⌨️ 快捷键说明

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