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

Packages that use RepeatList
com.nurelm.nucontent.controller   
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. 
 

Uses of RepeatList in com.nurelm.nucontent.controller
 

Methods in com.nurelm.nucontent.controller that return RepeatList
 RepeatList TagRepeat.getRepeatList()
           
 

Uses of RepeatList in com.nurelm.nucontent.model
 

Methods in com.nurelm.nucontent.model that return RepeatList
 RepeatList RepeatItem.getRepeatList()
          Returns the repeatList of which this item is a member.
 RepeatList Page.getRepeatList(java.lang.String repeatListId)
          Returns the RepeatList associated with the supplied repeatId.
 RepeatList Page.getRepeatList(java.lang.String repeatListId, java.lang.String linkedTemplateId)
          Returns the RepeatList associated with the supplied repeatId.
 RepeatList Page.getRepeatListCreateIfNeeded(java.lang.String repeatListId)
          Returns the RepeatList associated with the supplied repeatId, and creates it if it does not already exist.
 RepeatList Page.getRepeatListCreateIfNeeded(java.lang.String repeatListId, java.lang.String linkedTemplateId)
          Returns the RepeatList associated with the supplied repeatId and linked to the page indicated, and creates it if it does not already exist.
 RepeatList Page.addRepeatList(java.lang.String repeatListId)
          Adds a new RepeatList that is associated with the supplied repeatListId.
 RepeatList Page.addRepeatList(java.lang.String repeatListId, java.lang.String linkedTemplateId)
          Adds a new RepeatList that is associated with the supplied repeatListId and linked to linkedTemplateId.
 RepeatList Page.getRepeatListCollectionCreateIfNeeded(java.lang.String repeatListId, java.util.ArrayList repeatItemList)
           
 RepeatList Page.addRepeatListCollection(java.lang.String repeatListId, java.util.ArrayList repeatItemList)
          Adds a new RepeatListCollection that is associated with the supplied repeatListId.