Groovy Documentation

org.codehaus.griffon.cli.shell.command
[Java] Class CreateFestSpecCommand

java.lang.Object
  org.codehaus.griffon.cli.shell.AbstractGriffonCommand
      org.codehaus.griffon.cli.shell.command.CreateFestSpecCommand

@Command(scope = "fest",
        name = "create-fest-spec",
        description = "Creates a new Griffon FEST spec")
public class CreateFestSpecCommand
extends AbstractGriffonCommand

Authors:
Andres Almiray


Field Summary
private String archetype

private String name

private boolean skipPackagePrompt

 
Fields inherited from class AbstractGriffonCommand
env, nonInteractive
 
Constructor Summary
CreateFestSpecCommand()

 
Method Summary
 
Methods inherited from class AbstractGriffonCommand
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll
 
Methods inherited from class Object
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll
 

Field Detail

archetype

@Option(name = "--archetype",
            description = "Archetype to be searched for templates.",
            required = false)
private String archetype


name

@Argument(index = 0,
            name = "name",
            description = "The name of the spec to be created.",
            required = false)
private String name


skipPackagePrompt

@Option(name = "--skip-package-prompt",
            description = "Skips the usage of the application's default package if the name of the class is not fully qualified.",
            required = false)
private boolean skipPackagePrompt


 
Constructor Detail

CreateFestSpecCommand

CreateFestSpecCommand()


 

Groovy Documentation