grails.plugin.json.view.api.internal.ParentInfo.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of views-json Show documentation
Show all versions of views-json Show documentation
Provides additional view technologies to the Grails framework, including JSON and Markup views.
The newest version!
package grails.plugin.json.view.api.internal
import grails.views.GrailsViewTemplate
import groovy.transform.CompileStatic
@CompileStatic
class ParentInfo {
/**
* The parent template if any
*/
GrailsViewTemplate parentTemplate
/**
* The parent model, if any
*/
Map parentModel
}