janino.net

org.codehaus.janino
Class IClass.IConstructor

java.lang.Object
  extended by org.codehaus.janino.IClass.IInvocable
      extended by org.codehaus.janino.IClass.IConstructor
All Implemented Interfaces:
IClass.IMember
Enclosing class:
IClass

public abstract class IClass.IConstructor
extends IClass.IInvocable


Constructor Summary
IClass.IConstructor()
           
 
Method Summary
 java.lang.String getDescriptor()
          Opposed to getParameterTypes(), the method descriptor returned by this method does include the optionally leading synthetic parameters.
abstract  IClass[] getParameterTypes()
          Opposed to Constructor.getParameterTypes(), the return value of this method does not include the optionally leading "synthetic parameters".
 java.lang.String toString()
           
 
Methods inherited from class org.codehaus.janino.IClass.IInvocable
getAccess, getDeclaringIClass, getThrownExceptions, isLessSpecificThan, isMoreSpecificThan
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

IClass.IConstructor

public IClass.IConstructor()
Method Detail

getParameterTypes

public abstract IClass[] getParameterTypes()
                                    throws CompileException
Opposed to Constructor.getParameterTypes(), the return value of this method does not include the optionally leading "synthetic parameters".

Specified by:
getParameterTypes in class IClass.IInvocable
Throws:
CompileException

getDescriptor

public java.lang.String getDescriptor()
                               throws CompileException
Opposed to getParameterTypes(), the method descriptor returned by this method does include the optionally leading synthetic parameters.

Specified by:
getDescriptor in class IClass.IInvocable
Throws:
CompileException

toString

public java.lang.String toString()
Specified by:
toString in class IClass.IInvocable

janino.net