Uses of Class
com.nurelm.nucontent.model.Node

Packages that use Node
com.nurelm.nucontent.model This package provides an object oriented interface to NuContent's data model from which any piece of content in an entire NuContent-powered site can be accessed or modified. 
com.nurelm.util   
 

Uses of Node in com.nurelm.nucontent.model
 

Subclasses of Node in com.nurelm.nucontent.model
 class File
          Contains information corresponding to a file on the server's filesystem.
 class Image
          Object representing a NuContent image.
 class Link
          Represents a NuContent link.
 class Page
          Corresponds to a Web page in a NuContent application.
 class StandAloneFile
          Object representing a NuContent file.
 

Methods in com.nurelm.nucontent.model that return Node
 Node Site.getNode(java.lang.String id)
          Returns the Node object associated with the supplied id.
 Node Site.getNodeLockIfNeeded(java.lang.String id, UserValueObject userVO, java.lang.String pageURI, boolean isLockable)
          Returns the requested Node, but locks it and returns the working copy instead if necessary (if the Node is really a Page.
 Node Page.addChildLink(Link link)
           
 Node Page.addChildLink(Link link, int orderIndex)
           
 

Methods in com.nurelm.nucontent.model with parameters of type Node
 void Page.removeChildNode(Node node)
          Remove the specified child object.
 

Uses of Node in com.nurelm.util
 

Methods in com.nurelm.util that return Node
static Node NuPlatformUtil.getNodeLockIfNeeded(javax.servlet.http.HttpServletRequest request, javax.servlet.ServletContext servletContext, java.lang.String pageURI)
          Returns the requested Node, but locks it and returns the working copy instead if necessary.
static Node NuPlatformUtil.getNodeLockIfNeeded(java.lang.String id, javax.servlet.http.HttpServletRequest request, javax.servlet.ServletContext servletContext, java.lang.String pageURI)
          Returns the requested Node, but locks it and returns the working copy instead if necessary.
static Node NuPlatformUtil.getNodeDoNotLock(javax.servlet.http.HttpServletRequest request)
          Returns the requested Node, but never locks it first.
static Node NuPlatformUtil.getNodeDoNotLock(javax.servlet.http.HttpServletRequest request, java.lang.String pageId)