gw.gosudoc.misc.GSSourcePositionImpl.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.SourcePosition
uses java.io.File
class GSSourcePositionImpl implements SourcePosition{
var _file : File as File
var _line : int as Line
var _column : int as Column
override function file(): File{
return _file
}
override function line(): int{
return _line
}
override function column(): int{
return _column
}
override function toString() : String {
return "${_file.Name}:${Line} column ${Column}"
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy