Uses of Interface
org.telscenter.sail.webapp.domain.premadecomment.PremadeCommentList

Packages that use PremadeCommentList
org.telscenter.sail.webapp.dao.premadecomment   
org.telscenter.sail.webapp.dao.premadecomment.impl   
org.telscenter.sail.webapp.domain.premadecomment   
org.telscenter.sail.webapp.domain.premadecomment.impl   
org.telscenter.sail.webapp.service.premadecomment   
org.telscenter.sail.webapp.service.premadecomment.impl   
 

Uses of PremadeCommentList in org.telscenter.sail.webapp.dao.premadecomment
 

Classes in org.telscenter.sail.webapp.dao.premadecomment with type parameters of type PremadeCommentList
 interface PremadeCommentListDao<T extends PremadeCommentList>
           
 

Methods in org.telscenter.sail.webapp.dao.premadecomment that return PremadeCommentList
 PremadeCommentList PremadeCommentListDao.getListById(Long id)
          Returns a PremadeCommentList that has the given id
 

Methods in org.telscenter.sail.webapp.dao.premadecomment that return types with arguments of type PremadeCommentList
 List<PremadeCommentList> PremadeCommentListDao.getListByGlobal()
          Returns a List of PremadeCommentList that have the global field set to true.
 List<PremadeCommentList> PremadeCommentListDao.getListByOwner(User user)
          Returns a List that the given User owns.
 List<PremadeCommentList> PremadeCommentListDao.getListByRun(Run run)
          Returns a List that is associated with the given Run.
 

Uses of PremadeCommentList in org.telscenter.sail.webapp.dao.premadecomment.impl
 

Methods in org.telscenter.sail.webapp.dao.premadecomment.impl that return PremadeCommentList
 PremadeCommentList HibernatePremadeCommentListDao.getListById(Long id)
           
 

Methods in org.telscenter.sail.webapp.dao.premadecomment.impl that return types with arguments of type PremadeCommentList
 List<PremadeCommentList> HibernatePremadeCommentListDao.getListByGlobal()
           
 List<PremadeCommentList> HibernatePremadeCommentListDao.getListByOwner(User user)
           
 List<PremadeCommentList> HibernatePremadeCommentListDao.getListByRun(Run run)
           
 

Uses of PremadeCommentList in org.telscenter.sail.webapp.domain.premadecomment
 

Methods in org.telscenter.sail.webapp.domain.premadecomment with parameters of type PremadeCommentList
 boolean PremadeCommentList.equals(PremadeCommentList premadeCommentList)
           
 

Uses of PremadeCommentList in org.telscenter.sail.webapp.domain.premadecomment.impl
 

Classes in org.telscenter.sail.webapp.domain.premadecomment.impl that implement PremadeCommentList
 class PremadeCommentListImpl
           
 

Methods in org.telscenter.sail.webapp.domain.premadecomment.impl with parameters of type PremadeCommentList
 boolean PremadeCommentListImpl.equals(PremadeCommentList premadeCommentList)
          Compares the id of the lists to determine if they are the same
 

Uses of PremadeCommentList in org.telscenter.sail.webapp.service.premadecomment
 

Methods in org.telscenter.sail.webapp.service.premadecomment that return PremadeCommentList
 PremadeCommentList PremadeCommentService.addPremadeCommentToList(Long commentListID, PremadeComment premadeComment)
          Adds a PremadeComment to the PremadeCommentList given the PremadeComment and the PremadeCommentList ID
 PremadeCommentList PremadeCommentService.createPremadeCommentList(PremadeCommentListParameters params)
          Creates a new PremadeCommentList in the data store.
 PremadeCommentList PremadeCommentService.removePremadeCommentFromList(Long commentID, PremadeComment premadeComment)
          Removes a PremadeComment from the list of PremadeCommentList given the PremadeCommentList ID and the PremadeComment
 PremadeCommentList PremadeCommentService.retrievePremadeCommentListById(Long id)
          Retrieves a PremadeCommentList with the given id
 PremadeCommentList PremadeCommentService.updatePremadeCommentListLabel(Long commentListID, String newLabel)
          Updates the label of a PremadeCommentList given its ID and new label.
 

Methods in org.telscenter.sail.webapp.service.premadecomment that return types with arguments of type PremadeCommentList
 Set<PremadeCommentList> PremadeCommentService.retrieveAllGlobalPremadeCommentLists()
          Retrieves all PremadeCommentLists that have the global field set to true
 Set<PremadeCommentList> PremadeCommentService.retrieveAllPremadeCommentLists()
          Retrieves all PremadeCommentLists from the data store.
 Set<PremadeCommentList> PremadeCommentService.retrieveAllPremadeCommentListsByRun(Run run)
          Retrieves all PremadeCommentLists associated with a given run.
 Set<PremadeCommentList> PremadeCommentService.retrieveAllPremadeCommentListsByUser(User user)
          Retrieves all PremadeCommentLists associated with a given user.
 

Uses of PremadeCommentList in org.telscenter.sail.webapp.service.premadecomment.impl
 

Methods in org.telscenter.sail.webapp.service.premadecomment.impl that return PremadeCommentList
 PremadeCommentList PremadeCommentServiceImpl.addPremadeCommentToList(Long commentListId, PremadeComment comment)
           
 PremadeCommentList PremadeCommentServiceImpl.createPremadeCommentList(PremadeCommentListParameters param)
           
 PremadeCommentList PremadeCommentServiceImpl.removePremadeCommentFromList(Long commentListId, PremadeComment comment)
           
 PremadeCommentList PremadeCommentServiceImpl.retrievePremadeCommentListById(Long id)
           
 PremadeCommentList PremadeCommentServiceImpl.updatePremadeCommentListLabel(Long commentListId, String newLabel)
           
 

Methods in org.telscenter.sail.webapp.service.premadecomment.impl that return types with arguments of type PremadeCommentList
 Set<PremadeCommentList> PremadeCommentServiceImpl.retrieveAllGlobalPremadeCommentLists()
           
 Set<PremadeCommentList> PremadeCommentServiceImpl.retrieveAllPremadeCommentLists()
           
 Set<PremadeCommentList> PremadeCommentServiceImpl.retrieveAllPremadeCommentListsByRun(Run run)
           
 Set<PremadeCommentList> PremadeCommentServiceImpl.retrieveAllPremadeCommentListsByUser(User user)
           
 

Method parameters in org.telscenter.sail.webapp.service.premadecomment.impl with type arguments of type PremadeCommentList
 void PremadeCommentServiceImpl.setPremadeCommentListDao(PremadeCommentListDao<PremadeCommentList> premadeCommentListDao)
           
 



Copyright © 2012. All Rights Reserved.