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

Packages that use RepeatItem
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. 
com.nurelm.util   
 

Uses of RepeatItem in com.nurelm.nucontent.controller
 

Methods in com.nurelm.nucontent.controller that return RepeatItem
 RepeatItem TagRepeat.getRepeatItem()
           
 

Uses of RepeatItem in com.nurelm.nucontent.model
 

Methods in com.nurelm.nucontent.model that return RepeatItem
 RepeatItem RepeatList.getRepeatItem(int index)
          Get a particular RepeatItem object.
 RepeatItem RepeatList.getRepeatItem(java.lang.String repeatItemId)
          Get a particular RepeatItem object.
 RepeatItem RepeatList.getRepeatItem(java.lang.String contentId, java.lang.String contentText)
          Get the first RepeatItem that contains content with the specified ID and value.
 RepeatItem RepeatList.getRepeatItemCreateIfNeeded(java.lang.String repeatItemId)
          Get a particular RepeatItem object, and create a new one if it does not exist.
 RepeatItem RepeatList.addRepeatItem()
          Adds a new RepeatItem at the end of the list of RepeatItems
 RepeatItem RepeatList.addRepeatItem(java.lang.String repeatItemId)
          Adds a new RepeatItem at the end of the list of RepeatItems with the specified id.
 RepeatItem RepeatList.addRepeatItem(int index)
          Adds a new RepeatItem at the location specified by the supplied index.
 RepeatItem RepeatList.addRepeatItem(int index, Page linkedPage)
          Adds a new RepeatItem at the location specified by the supplied index.
 RepeatItem RepeatList.addRepeatItem(java.util.ArrayList repeatItemList)
          Allows an entire list of repeat items to be added.
 RepeatItem RepeatList.copyRepeatItem(int index)
          Adds a new RepeatItem at the location specified by the supplied index.
 

Uses of RepeatItem in com.nurelm.util
 

Methods in com.nurelm.util that return RepeatItem
static RepeatItem JSPUtil.getRepeatItem(Site site, java.lang.String rootPageId, java.lang.String repeatListId, java.lang.String repeatItemId)
          Gets a repeat item from the root page, repeat block and repeat item id specified.
static RepeatItem JSPUtil.getRepeatItem(Site site, java.lang.String rootPageId, java.lang.String repeatListName, java.lang.String contentId, java.lang.String contentValue)
          Gets a repeat item from the root page, repeat block, content id and value specified.