gw.gosudoc.misc.GSParameterImpl.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.misc
uses gw.gosudoc.com.sun.javadoc.*
/**
* Created by carson on 4/17/15.
*/
class GSParameterImpl implements gw.gosudoc.com.sun.javadoc.Parameter {
var _name : String as Name
var _type : gw.gosudoc.com.sun.javadoc.Type as Type
construct(name : String, type : gw.gosudoc.com.sun.javadoc.Type) {
_name = name
_type = type
}
override function type(): gw.gosudoc.com.sun.javadoc.Type{
return _type
}
override function name(): String{
return _name
}
override function typeName(): String{
return type().typeName()
}
override function annotations(): AnnotationDesc[]{
return {}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy