fr.umlv.corosol.component
Interface JConstructor

All Superinterfaces:
JClassMethod, JObject
All Known Implementing Classes:
DefaultJConstructor

public interface JConstructor
extends JClassMethod

This interface represents a class constructors and contains methods which permit to retrieve all informations about it.

Author:
Christophe Deleray

Field Summary
static java.lang.String CLINIT
          The name of the static class initializer.
static java.lang.String INIT
          The name of a class constructor.
 
Method Summary
 java.lang.reflect.Constructor getNativeConstructor()
          Returns the java.lang.reflect.Constructor object equivalent to this JConstructor object.
 
Methods inherited from interface fr.umlv.corosol.component.JClassMethod
getBytecode, getDeclaringClass, getDescriptor, getExceptionTypes, getMaxLocals, getMaxStack, getModifiers, getName, getParameterTypes, invoke
 

Field Detail

INIT

static final java.lang.String INIT
The name of a class constructor.

See Also:
Constant Field Values

CLINIT

static final java.lang.String CLINIT
The name of the static class initializer.

See Also:
Constant Field Values
Method Detail

getNativeConstructor

java.lang.reflect.Constructor getNativeConstructor()
Returns the java.lang.reflect.Constructor object equivalent to this JConstructor object.

Returns:
the java.lang.reflect.Constructor object equivalent to this JConstructor object
See Also:
Constructor