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.
 java.util.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
 java.util.List<PollDTO> DataPollConverter.createPollDTOs(java.util.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 PreventRuleAbstract.poll
           
 Poll CommentAbstract.poll
           
 Poll ResultAbstract.poll
           
 Poll VotingListAbstract.poll
           
 Poll VoteAbstract.poll
           
 Poll ChoiceAbstract.poll
           
 

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

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

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

Methods in org.chorem.pollen.business.persistence with parameters of type Poll
 void PollAccountAbstract.addPollsCreated(Poll pollsCreated)
           
 void PollAccount.addPollsCreated(Poll pollsCreated)
           
 java.util.List<E> VotingListDAOAbstract.findAllByPoll(Poll v)
          Retourne les éléments ayant comme valeur pour l'attribut poll le paramètre
 java.util.List<E> VoteDAOAbstract.findAllByPoll(Poll v)
          Retourne les éléments ayant comme valeur pour l'attribut poll le paramètre
 java.util.List<E> CommentDAOAbstract.findAllByPoll(Poll v)
          Retourne les éléments ayant comme valeur pour l'attribut poll le paramètre
 java.util.List<E> ChoiceDAOAbstract.findAllByPoll(Poll v)
          Retourne les éléments ayant comme valeur pour l'attribut poll le paramètre
 java.util.List<E> ResultDAOAbstract.findAllByPoll(Poll v)
          Retourne les éléments ayant comme valeur pour l'attribut poll le paramètre
 java.util.List<E> PreventRuleDAOAbstract.findAllByPoll(Poll v)
          Retourne les éléments ayant comme valeur pour l'attribut poll le paramètre
 java.util.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 VoteDAOAbstract.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 ChoiceDAOAbstract.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 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 PollAccountAbstract.removePollsCreated(Poll value)
           
 void PollAccount.removePollsCreated(Poll pollsCreated)
           
 void PreventRuleAbstract.setPoll(Poll value)
           
 void CommentAbstract.setPoll(Poll value)
           
 void ResultAbstract.setPoll(Poll value)
           
 void VotingListAbstract.setPoll(Poll value)
           
 void VoteAbstract.setPoll(Poll value)
           
 void ChoiceAbstract.setPoll(Poll value)
           
 void VotingList.setPoll(Poll poll)
           
 void Comment.setPoll(Poll poll)
           
 void Result.setPoll(Poll poll)
           
 void Choice.setPoll(Poll poll)
           
 void Vote.setPoll(Poll poll)
           
 void PreventRule.setPoll(Poll poll)
           
 

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



Copyright © 2009 CodeLutin. All Rights Reserved.