Skip to content

Commit cfeb63a

Browse files
committed
Add comments to Application
1 parent 5b68cad commit cfeb63a

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

src/main/groovy/geoscript/Application.groovy

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,17 @@ import groovy.ui.GroovyMain as Script
44
import groovy.ui.Console
55
import org.codehaus.groovy.tools.shell.Main as Shell
66

7+
/**
8+
* The GeoScript Application that can run scripts, shell, or console.
9+
* @author Jared Erickson
10+
*/
711
class Application {
812

13+
/**
14+
* Run the GeoScript Application
15+
* @param args The command line arguments. At least script, shell, or console
16+
* is required.
17+
*/
918
static void main(String[] args) {
1019
if (args.length < 1) {
1120
println "Please provide a command (script, shell, or console)"

0 commit comments

Comments
 (0)