grails.views.api.View.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of views-core Show documentation
Show all versions of views-core Show documentation
Provides additional view technologies to the Grails framework, including JSON and Markup views.
The newest version!
package grails.views.api
import groovy.transform.CompileStatic
/**
* @author Graeme Rocher
* @since 1.0
*/
@CompileStatic
trait View {
/**
* The locale of the view
*/
Locale locale = Locale.ENGLISH
/**
* The output stream
*/
Writer out
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy