Groovy Documentation

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

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

@Command(scope = "fest",
        name = "create-fest-test",
        description = "Creates a new Griffon FEST test")
public class CreateFestTestCommand
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
CreateFestTestCommand()

 
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 test 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

CreateFestTestCommand

CreateFestTestCommand()


 

Groovy Documentation