| 
 | Java™ Platform Standard Ed. 6 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Constructor | |
|---|---|
| java.lang | Provides classes that are fundamental to the design of the Java programming language. | 
| javax.management | Provides the core classes for the Java Management Extensions. | 
| javax.management.modelmbean | Provides the definition of the ModelMBean classes. | 
| Uses of Constructor in java.lang | 
|---|
| Methods in java.lang that return Constructor | |
|---|---|
|  Constructor<T> | Class.getConstructor(Class<?>... parameterTypes)Returns a Constructorobject that reflects the specified
 public constructor of the class represented by thisClassobject. | 
|  Constructor<?>[] | Class.getConstructors()Returns an array containing Constructorobjects reflecting
 all the public constructors of the class represented by thisClassobject. | 
|  Constructor<T> | Class.getDeclaredConstructor(Class<?>... parameterTypes)Returns a Constructorobject that reflects the specified
 constructor of the class or interface represented by thisClassobject. | 
|  Constructor<?>[] | Class.getDeclaredConstructors()Returns an array of Constructorobjects reflecting all the
 constructors declared by the class represented by thisClassobject. | 
|  Constructor<?> | Class.getEnclosingConstructor()If this Class object represents a local or anonymous class within a constructor, returns a Constructorobject representing
 the immediately enclosing constructor of the underlying
 class. | 
| Uses of Constructor in javax.management | 
|---|
| Constructors in javax.management with parameters of type Constructor | |
|---|---|
| MBeanConstructorInfo(String description,
                     Constructor constructor)Constructs an MBeanConstructorInfoobject. | |
| Uses of Constructor in javax.management.modelmbean | 
|---|
| Constructors in javax.management.modelmbean with parameters of type Constructor | |
|---|---|
| ModelMBeanConstructorInfo(String description,
                          Constructor constructorMethod)Constructs a ModelMBeanConstructorInfo object with a default descriptor. | |
| ModelMBeanConstructorInfo(String description,
                          Constructor constructorMethod,
                          Descriptor descriptor)Constructs a ModelMBeanConstructorInfo object. | |
| 
 | Java™ Platform Standard Ed. 6 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
Copyright 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.