Uses of Interface
org.chorem.pollen.business.persistence.Poll

Packages that use Poll
org.chorem.pollen.business.converters Gestion de la conversion des DTO en entités et des entités en DTO. 
org.chorem.pollen.business.persistence   
 

Uses of Poll in org.chorem.pollen.business.converters
 

Methods in org.chorem.pollen.business.converters with parameters of type Poll
 PollDTO DataPollConverter.createPollDTO(Poll ePoll)
          Création d'un dto sondage à partir d'une entité.
static PollDTO DataVoteCountingConverter.createPollDTOForVoteCounting(Poll ePoll)
          Création d'un DTO sondage d'export à partir d'une entité sondage.
 List<ResultDTO> DataResultConverter.createResultDTOs(Poll ePoll)
          Retourne la liste des résultats d'un sondage sous forme de DTOs.
static ChoiceType EnumController.getChoiceType(Poll poll)
           
static PollType EnumController.getPollType(Poll poll)
           
static VoteCountingType EnumController.getVoteCountingType(Poll poll)
           
static boolean EnumController.isGroupType(Poll poll)
           
 void DataPollConverter.persistChoices(PollDTO pollDTO, Poll ePoll)
          Persistance des choix d'une entité sondage à partir d'un DTO.
 void DataPollConverter.persistPreventRules(PollDTO pollDTO, Poll ePoll)
          Persistance des règles de notification d'une entité sondage à partir d'un DTO.
 void DataPollConverter.populatePollEntity(PollDTO pollDTO, Poll ePoll)
          Création d'un sondage à partir d'un dto sondage.
 void EnumController.setChoiceType(ChoiceType type, Poll ePoll)
           
 void EnumController.setPollType(PollType type, Poll ePoll)
           
 void EnumController.setVoteCounting(VoteCountingType type, Poll ePoll)
           
 

Method parameters in org.chorem.pollen.business.converters with type arguments of type Poll
 List<PollDTO> DataPollConverter.createPollDTOs(List<Poll> lPolls)
          Retourne une liste de dtos sondage à partir d'une liste d'entités.
 

Uses of Poll in org.chorem.pollen.business.persistence
 

Classes in org.chorem.pollen.business.persistence with type parameters of type Poll
 class PollDAOAbstract<E extends Poll>
          Implantation DAO pour l'entité Poll.
 class PollDAOImpl<E extends Poll>
          Implantation du DAO pour l'entité Poll.
 

Classes in org.chorem.pollen.business.persistence that implement Poll
 class PollAbstract
          Implantation POJO pour l'entité Poll.
 class PollImpl
          Implantation des operations pour l'entité Poll.
 

Fields in org.chorem.pollen.business.persistence declared as Poll
 Poll VotingListAbstract.poll
           
 Poll CommentAbstract.poll
           
 Poll PreventRuleAbstract.poll
           
 Poll ChoiceAbstract.poll
           
 Poll ResultAbstract.poll
           
 Poll VoteAbstract.poll
           
 

Fields in org.chorem.pollen.business.persistence with type parameters of type Poll
 List<Poll> PollAccountAbstract.pollsCreated
           
 

Methods in org.chorem.pollen.business.persistence that return Poll
 Poll Result.getPoll()
           
 Poll Comment.getPoll()
           
 Poll VotingListAbstract.getPoll()
           
 Poll Vote.getPoll()
           
 Poll CommentAbstract.getPoll()
           
 Poll Choice.getPoll()
           
 Poll PreventRule.getPoll()
           
 Poll PreventRuleAbstract.getPoll()
           
 Poll ChoiceAbstract.getPoll()
           
 Poll ResultAbstract.getPoll()
           
 Poll VotingList.getPoll()
           
 Poll VoteAbstract.getPoll()
           
 Poll PollAccount.getPollsCreatedByTopiaId(String topiaId)
          Recupère l'attribut pollsCreated à partir de son topiaId.
 Poll PollAccountAbstract.getPollsCreatedByTopiaId(String topiaId)
           
 

Methods in org.chorem.pollen.business.persistence that return types with arguments of type Poll
 List<Poll> PollAccount.getPollsCreated()
           
 List<Poll> PollAccountAbstract.getPollsCreated()
           
 

Methods in org.chorem.pollen.business.persistence with parameters of type Poll
 void PollAccount.addPollsCreated(Poll pollsCreated)
           
 void PollAccountAbstract.addPollsCreated(Poll pollsCreated)
           
 List<E> VotingListDAOAbstract.findAllByPoll(Poll v)
          Retourne les éléments ayant comme valeur pour l'attribut poll le paramètre
 List<E> ResultDAOAbstract.findAllByPoll(Poll v)
          Retourne les éléments ayant comme valeur pour l'attribut poll le paramètre
 List<E> ChoiceDAOAbstract.findAllByPoll(Poll v)
          Retourne les éléments ayant comme valeur pour l'attribut poll le paramètre
 List<E> CommentDAOAbstract.findAllByPoll(Poll v)
          Retourne les éléments ayant comme valeur pour l'attribut poll le paramètre
 List<E> VoteDAOAbstract.findAllByPoll(Poll v)
          Retourne les éléments ayant comme valeur pour l'attribut poll le paramètre
 List<E> PreventRuleDAOAbstract.findAllByPoll(Poll v)
          Retourne les éléments ayant comme valeur pour l'attribut poll le paramètre
 List<E> PollAccountDAOAbstract.findAllContainsPollsCreated(Poll... v)
          Retourne les éléments trouvé dont l'attribut pollsCreated contient le paramètre
 E VotingListDAOAbstract.findByPoll(Poll v)
          Retourne le premier élément trouvé ayant comme valeur pour l'attribut poll le paramètre
 E ResultDAOAbstract.findByPoll(Poll v)
          Retourne le premier élément trouvé ayant comme valeur pour l'attribut poll le paramètre
 E ChoiceDAOAbstract.findByPoll(Poll v)
          Retourne le premier élément trouvé ayant comme valeur pour l'attribut poll le paramètre
 E CommentDAOAbstract.findByPoll(Poll v)
          Retourne le premier élément trouvé ayant comme valeur pour l'attribut poll le paramètre
 E VoteDAOAbstract.findByPoll(Poll v)
          Retourne le premier élément trouvé ayant comme valeur pour l'attribut poll le paramètre
 E PreventRuleDAOAbstract.findByPoll(Poll v)
          Retourne le premier élément trouvé ayant comme valeur pour l'attribut poll le paramètre
 E PollAccountDAOAbstract.findContainsPollsCreated(Poll... v)
          Retourne le premier élément trouvé dont l'attribut pollsCreated contient le paramètre
 void PollAccount.removePollsCreated(Poll pollsCreated)
           
 void PollAccountAbstract.removePollsCreated(Poll value)
           
 void Result.setPoll(Poll poll)
           
 void Comment.setPoll(Poll poll)
           
 void VotingListAbstract.setPoll(Poll value)
           
 void Vote.setPoll(Poll poll)
           
 void CommentAbstract.setPoll(Poll value)
           
 void Choice.setPoll(Poll poll)
           
 void PreventRule.setPoll(Poll poll)
           
 void PreventRuleAbstract.setPoll(Poll value)
           
 void ChoiceAbstract.setPoll(Poll value)
           
 void ResultAbstract.setPoll(Poll value)
           
 void VotingList.setPoll(Poll poll)
           
 void VoteAbstract.setPoll(Poll value)
           
 

Method parameters in org.chorem.pollen.business.persistence with type arguments of type Poll
 void PollAccount.addAllPollsCreated(List<Poll> pollsCreated)
           
 void PollAccountAbstract.addAllPollsCreated(List<Poll> values)
           
 void PollAccount.setPollsCreated(List<Poll> pollsCreated)
           
 void PollAccountAbstract.setPollsCreated(List<Poll> values)
           
 



Copyright © 2009-2010 CodeLutin. All Rights Reserved.