grails.doc.internal.UserGuideNode.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grails-docs Show documentation
Show all versions of grails-docs Show documentation
Grails Web Application Framework
package grails.doc.internal
import groovy.transform.ToString
@ToString(excludes="parent, children")
class UserGuideNode {
UserGuideNode parent
List children = []
/**
* The identifier for this node. It's basically the gdoc filename minus the
* '.gdoc' suffix. Will be null
or empty for the root node.
*/
String name
/** The node title, as displayed in the generated user guide. */
String title
/**
* The location (including filename) of the node, relatively to the root
* of the gdoc source directory. Uses Unix style path separators, i.e. '/'/
*/
String file
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy