Uses of Interface
groovy.lang.Writable

Packages that use Writable
groovy.lang Core Groovy language classes for implementing data structures, closures, metadata and so forth. 
groovy.text Contains the text processing utilities in particular the template engine API and default implementation. 
org.codehaus.groovy.runtime Runtime classes for Groovy - whether the dynamic interpreter is being used, the compiler or the bytecode generator. 
 

Uses of Writable in groovy.lang
 

Classes in groovy.lang that implement Writable
 class GString
          Represents a String which contains embedded values such as "hello there ${user} how are you?" which can be evaluated lazily.
 

Uses of Writable in groovy.text
 

Subinterfaces of Writable in groovy.text
 interface Template
          A template is a block of text with an associated binding that can be output to a writer or evaluated to a string.
 

Uses of Writable in org.codehaus.groovy.runtime
 

Methods in org.codehaus.groovy.runtime with parameters of type Writable
static void DefaultGroovyMethods.write(java.io.Writer self, Writable writable)
          A helper method so that dynamic dispatch of the writer.write(object) method will always use the more efficient Writable.writeTo(writer) mechanism if the object implements the Writable interface.
 



Copyright © 2003-2004 The Codehaus. All Rights Reserved.