Java Doc for OpenMBeanConstructorInfoSupport.java in  » 6.0-JDK-Core » management » javax » management » openmbean » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » management » javax.management.openmbean 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


javax.management.MBeanConstructorInfo
   javax.management.openmbean.OpenMBeanConstructorInfoSupport

OpenMBeanConstructorInfoSupport
public class OpenMBeanConstructorInfoSupport extends MBeanConstructorInfo implements OpenMBeanConstructorInfo(Code)
Describes a constructor of an Open MBean.
since:
   1.5


Field Summary
final static  longserialVersionUID
    

Constructor Summary
public  OpenMBeanConstructorInfoSupport(String name, String description, OpenMBeanParameterInfo[] signature)
    
public  OpenMBeanConstructorInfoSupport(String name, String description, OpenMBeanParameterInfo[] signature, Descriptor descriptor)
    

Constructs an OpenMBeanConstructorInfoSupport instance, which describes the constructor of a class of open MBeans with the specified name , description , signature , and descriptor .

The signature array parameter is internally copied, so that subsequent changes to the array referenced by signature have no effect on this instance.


Parameters:
  name - cannot be a null or empty string.
Parameters:
  description - cannot be a null or empty string.
Parameters:
  signature - can be null or empty if there are noparameters to describe.
Parameters:
  descriptor - The descriptor for the constructor.

Method Summary
public  booleanequals(Object obj)
    

Compares the specified obj parameter with this OpenMBeanConstructorInfoSupport instance for equality.

Returns true if and only if all of the following statements are true:

  • obj is non null,
  • obj also implements the OpenMBeanConstructorInfo interface,
  • their names are equal
  • their signatures are equal.
This ensures that this equals method works properly for obj parameters which are different implementations of the OpenMBeanConstructorInfo interface.
public  inthashCode()
    
public  StringtoString()
    

Field Detail
serialVersionUID
final static long serialVersionUID(Code)




Constructor Detail
OpenMBeanConstructorInfoSupport
public OpenMBeanConstructorInfoSupport(String name, String description, OpenMBeanParameterInfo[] signature)(Code)

Constructs an OpenMBeanConstructorInfoSupport instance, which describes the constructor of a class of open MBeans with the specified name , description and signature .

The signature array parameter is internally copied, so that subsequent changes to the array referenced by signature have no effect on this instance.


Parameters:
  name - cannot be a null or empty string.
Parameters:
  description - cannot be a null or empty string.
Parameters:
  signature - can be null or empty if there are noparameters to describe.
throws:
  IllegalArgumentException - if name or description are null or empty string.
throws:
  ArrayStoreException - If signature is not anarray of instances of a subclass of MBeanParameterInfo .



OpenMBeanConstructorInfoSupport
public OpenMBeanConstructorInfoSupport(String name, String description, OpenMBeanParameterInfo[] signature, Descriptor descriptor)(Code)

Constructs an OpenMBeanConstructorInfoSupport instance, which describes the constructor of a class of open MBeans with the specified name , description , signature , and descriptor .

The signature array parameter is internally copied, so that subsequent changes to the array referenced by signature have no effect on this instance.


Parameters:
  name - cannot be a null or empty string.
Parameters:
  description - cannot be a null or empty string.
Parameters:
  signature - can be null or empty if there are noparameters to describe.
Parameters:
  descriptor - The descriptor for the constructor. This maybe null which is equivalent to an empty descriptor.
throws:
  IllegalArgumentException - if name or description are null or empty string.
throws:
  ArrayStoreException - If signature is not anarray of instances of a subclass of MBeanParameterInfo .
since:
   1.6




Method Detail
equals
public boolean equals(Object obj)(Code)

Compares the specified obj parameter with this OpenMBeanConstructorInfoSupport instance for equality.

Returns true if and only if all of the following statements are true:

  • obj is non null,
  • obj also implements the OpenMBeanConstructorInfo interface,
  • their names are equal
  • their signatures are equal.
This ensures that this equals method works properly for obj parameters which are different implementations of the OpenMBeanConstructorInfo interface.
Parameters:
  obj - the object to be compared for equality with this OpenMBeanConstructorInfoSupport instance; true if the specified object is equal to this OpenMBeanConstructorInfoSupport instance.



hashCode
public int hashCode()(Code)

Returns the hash code value for this OpenMBeanConstructorInfoSupport instance.

The hash code of an OpenMBeanConstructorInfoSupport instance is the sum of the hash codes of all elements of information used in equals comparisons (ie: its name and signature, where the signature hashCode is calculated by a call to java.util.Arrays.asList(this.getSignature).hashCode() ).

This ensures that t1.equals(t2) implies that t1.hashCode()==t2.hashCode() for any two OpenMBeanConstructorInfoSupport instances t1 and t2 , as required by the general contract of the method Object.hashCode Object.hashCode() .

However, note that another instance of a class implementing the OpenMBeanConstructorInfo interface may be equal to this OpenMBeanConstructorInfoSupport instance as defined by OpenMBeanConstructorInfoSupport.equals(java.lang.Object) , but may have a different hash code if it is calculated differently.

As OpenMBeanConstructorInfoSupport instances are immutable, the hash code for this instance is calculated once, on the first call to hashCode , and then the same value is returned for subsequent calls.

the hash code value for this OpenMBeanConstructorInfoSupport instance



toString
public String toString()(Code)

Returns a string representation of this OpenMBeanConstructorInfoSupport instance.

The string representation consists of the name of this class (ie javax.management.openmbean.OpenMBeanConstructorInfoSupport ), the name and signature of the described constructor and the string representation of its descriptor.

As OpenMBeanConstructorInfoSupport instances are immutable, the string representation for this instance is calculated once, on the first call to toString , and then the same value is returned for subsequent calls.

a string representation of this OpenMBeanConstructorInfoSupport instance



Methods inherited from javax.management.MBeanConstructorInfo
public Object clone()(Code)(Java Doc)
public boolean equals(Object o)(Code)(Java Doc)
public MBeanParameterInfo[] getSignature()(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
public String toString()(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.