Uses of Interface
org.granite.generator.Input

Packages that use Input
org.granite.generator   
org.granite.generator.ant   
org.granite.generator.as3   
org.granite.generator.exception   
org.granite.generator.gsp   
 

Uses of Input in org.granite.generator
 

Classes in org.granite.generator with type parameters of type Input
 class Transformer<I extends Input<?>,O extends Output<?>,C extends Configuration>
           
 

Methods in org.granite.generator with parameters of type Input
protected abstract  boolean Transformer.accept(Input<?> input)
           
 Output<?>[] Generator.generate(Input<?> input)
           
 Output<?>[] Transformer.generate(Input<?> input)
           
 void Listener.generating(Input<?> input, Output<?> output)
           
 void Listener.removing(Input<?> input, Output<?> output)
           
 void Listener.skipping(Input<?> input, Output<?> output)
           
 

Uses of Input in org.granite.generator.ant
 

Methods in org.granite.generator.ant with parameters of type Input
 void AntListener.generating(Input<?> input, Output<?> output)
           
 void AntListener.removing(Input<?> input, Output<?> output)
           
 void AntListener.skipping(Input<?> input, Output<?> output)
           
 

Uses of Input in org.granite.generator.as3
 

Classes in org.granite.generator.as3 that implement Input
 class JavaAs3Input
           
 

Methods in org.granite.generator.as3 with parameters of type Input
 boolean JavaClientGroovyTransformer.accept(Input<?> input)
           
 

Uses of Input in org.granite.generator.exception
 

Methods in org.granite.generator.exception that return Input
 Input<?> TransformerNotFoundException.getInput()
           
 

Constructors in org.granite.generator.exception with parameters of type Input
TransformerNotFoundException(Input<?> input)
           
TransformerNotFoundException(Input<?> input, String message)
           
TransformerNotFoundException(Input<?> input, String message, Throwable cause)
           
TransformerNotFoundException(Input<?> input, Throwable cause)
           
 

Uses of Input in org.granite.generator.gsp
 

Classes in org.granite.generator.gsp with type parameters of type Input
 class AbstractGroovyTransformer<I extends Input<?>,O extends Output<?>,C extends GroovyConfiguration>