gw.gosudoc.doc.GSConstructorDocImpl.gs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gosu-doc Show documentation
Show all versions of gosu-doc Show documentation
Generates Javadoc-compatible documentation for Gosu projects
package gw.gosudoc.doc
uses gw.gosudoc.com.sun.javadoc.ConstructorDoc
uses gw.lang.reflect.IConstructorInfo
uses gw.lang.reflect.IType
class GSConstructorDocImpl extends GSExecutableMemberDocImpl implements ConstructorDoc{
var _iConstructorInfo: IConstructorInfo
//==========PUBLIC CONSTRUCTORS==========//
construct( ownersIntrinsicType: IType, iConstructorInfo: IConstructorInfo, rootDoc: GSRootDocImpl, clazz: GSClassDocImpl ){
super( iConstructorInfo, rootDoc, clazz, ownersIntrinsicType )
_iConstructorInfo = iConstructorInfo
}
//==========PUBLIC METHODS IMPLEMENTING INTERFACES==========//
override property get Constructor(): boolean{
return true
}
override function thrownExceptionTypes(): gw.gosudoc.com.sun.javadoc.Type[]{
return _iConstructorInfo.getExceptions().map( \elt -> getRootDoc().getType( elt.getExceptionType(), this ) ).toTypedArray()
}
override function receiverType(): gw.gosudoc.com.sun.javadoc.Type{
return null //To change body of implemented methods use File | Settings | File Templates.
}
//==========PACKAGE-PRIVATE METHODS==========//
override function initialize(){
var parameterInfos = _iConstructorInfo.getParameters()
var parameters = processParameterInfos( parameterInfos )
var desc = _iConstructorInfo.getDescription()
var comments = createParamTags( _iConstructorInfo.getParameters() )
initialize( parameters, desc, comments )
}
override function shouldBeIncluded(): boolean{
var b = super.shouldBeIncluded()
b &&= getRootDoc().shouldDocumentConstructor( _iConstructorInfo )
b &&= (_iConstructorInfo.isProtected() || _iConstructorInfo.isPublic())
return b
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy