com.borland.jbuilder.jot
Interface JotConstructorSource

All Superinterfaces:
JotConstructor, JotMarker, JotMethod, JotMethodSource

public interface JotConstructorSource
extends JotMethodSource, JotConstructor

This interface provides additional methods for manipulating a constructor's source. For more information about constructors see section 8.6 of the Java Language Specification.


Method Summary
 java.lang.String getDeclaredName()
          Returns the name of the constructor as it is declared in the source file.
 
Methods inherited from interface com.borland.jbuilder.jot.JotMethodSource
addParameter, addThrowSpecifier, getCodeBlock, getDeclaredModifiers, getStatements, removeParameter, removeThrowSpecifier, setModifiers, setName, setParameterText, setReturnType
 
Methods inherited from interface com.borland.jbuilder.jot.JotMethod
getDeclaringClass, getFirstParameter, getModifiers, getName, getParameter, getParameters, getParameterTypes, getReturnType, getThrowSpecifiers
 
Methods inherited from interface com.borland.jbuilder.jot.JotMarker
addUserData, getEndPosition, getStartPosition, getUserData
 
Methods inherited from interface com.borland.jbuilder.jot.JotConstructor
getName, newInstance
 

Method Detail

getDeclaredName

public java.lang.String getDeclaredName()
Returns the name of the constructor as it is declared in the source file. The JLS requires that this name be the same as the name of the declaring class.