Uses of Interface
com.hack23.cia.model.api.sweden.content.VoteData

Packages that use VoteData
com.hack23.cia.model.api.sweden.content Provides... 
com.hack23.cia.model.api.sweden.factory   
com.hack23.cia.model.impl.sweden.content Provides... 
com.hack23.cia.model.impl.sweden.factory   
com.hack23.cia.service.api.content Provides... 
com.hack23.cia.service.impl.commondao.api Provides... 
com.hack23.cia.service.impl.commondao.impl Provides... 
com.hack23.cia.service.impl.content Provides... 
com.hack23.cia.service.impl.control.agent.sweden.api Swedish Parliament data agent interfaces. 
com.hack23.cia.service.impl.control.agent.sweden.impl.agents Swedish Parliament data agent implementations. 
com.hack23.cia.service.impl.control.agent.sweden.impl.service Provides... 
com.hack23.cia.web.impl.ui.container.content Provides... 
com.hack23.cia.web.impl.ui.form.content Provides... 
com.hack23.cia.web.impl.ui.viewfactory.api.content Provides... 
com.hack23.cia.web.impl.ui.viewfactory.impl.content Provides... 
 

Uses of VoteData in com.hack23.cia.model.api.sweden.content
 

Methods in com.hack23.cia.model.api.sweden.content that return VoteData
 VoteData BallotData.getVoteForParliamentMember(ParliamentMemberData parliamentMember)
          Gets the vote for parliament member.
 

Methods in com.hack23.cia.model.api.sweden.content that return types with arguments of type VoteData
 List<VoteData> BallotData.getVotesData()
          Gets the votes data.
 

Methods in com.hack23.cia.model.api.sweden.content with parameters of type VoteData
 void BallotData.addVoteData(VoteData vote)
          Adds the vote data.
 boolean BallotResultData.isLosingVote(VoteData vote)
          Checks if is losing vote.
 boolean PartyBallotResultData.isRebelVote(VoteData voteForParliamentMember)
          Checks if is rebel vote.
 void BaseBallotResultData.newVote(VoteData vote)
          New vote.
 void ParliamentMemberBallotRecordData.newVote(VoteData vote)
          New vote.
 

Uses of VoteData in com.hack23.cia.model.api.sweden.factory
 

Methods in com.hack23.cia.model.api.sweden.factory that return VoteData
 VoteData SwedenModelFactory.createVoteData(ParliamentMemberData parliamentMember)
          Creates a new SwedenModel object.
 

Methods in com.hack23.cia.model.api.sweden.factory that return types with arguments of type VoteData
 Class<? extends VoteData> SwedenModelFactory.getVoteDataSpec()
          Gets the vote data spec.
 

Uses of VoteData in com.hack23.cia.model.impl.sweden.content
 

Classes in com.hack23.cia.model.impl.sweden.content that implement VoteData
 class Vote
          The Class Vote.
 

Methods in com.hack23.cia.model.impl.sweden.content that return types with arguments of type VoteData
 List<VoteData> Ballot.getVotesData()
           
 

Methods in com.hack23.cia.model.impl.sweden.content with parameters of type VoteData
 void Ballot.addVoteData(VoteData vote)
           
 boolean BallotResult.isLosingVote(VoteData vote)
           
 boolean PartyBallotResult.isRebelVote(VoteData vote)
           
 void ParliamentMemberBallotRecord.newVote(VoteData vote)
           
 void AbstractBallotMetaData.newVote(VoteData vote)
          New vote.
 

Uses of VoteData in com.hack23.cia.model.impl.sweden.factory
 

Methods in com.hack23.cia.model.impl.sweden.factory that return VoteData
 VoteData SwedenModelFactoryImpl.createVoteData(ParliamentMemberData parliamentMember)
           
 

Methods in com.hack23.cia.model.impl.sweden.factory that return types with arguments of type VoteData
 Class<? extends VoteData> SwedenModelFactoryImpl.getVoteDataSpec()
           
 

Uses of VoteData in com.hack23.cia.service.api.content
 

Methods in com.hack23.cia.service.api.content that return types with arguments of type VoteData
 List<VoteData> BallotResponse.getFindLastVotesByBallotId()
          Gets the find last votes by ballot id.
 List<VoteData> ParliamentMemberResponse.getVotes()
          Gets the votes.
 

Constructor parameters in com.hack23.cia.service.api.content with type arguments of type VoteData
BallotResponse(UserSessionDto userSessionDTO, List<VoteData> findLastVotesByBallotId2)
          Instantiates a new ballot response.
ParliamentMemberResponse(UserSessionDto userSessionDTO, ParliamentMemberData parliamentMember2, List<ParliamentMemberVoteCompareResultData> friendList2, List<ParliamentMemberVoteCompareResultData> enemyList2, List<ParliamentMemberVoteCompareResultData> friendPartyList2, List<ParliamentMemberVoteCompareResultData> enemyPartyList2, List<VoteData> votes2, RegisterInformationData registerInformation2)
          Instantiates a new parliament member response.
 

Uses of VoteData in com.hack23.cia.service.impl.commondao.api
 

Methods in com.hack23.cia.service.impl.commondao.api that return types with arguments of type VoteData
 List<VoteData> ParliamentMemberDAO.findLastVotes(Long id)
          Find last votes.
 List<VoteData> ParliamentMemberDAO.findLastVotesByBallotId(Long id)
          Find last votes by ballot id.
 List<VoteData> ParliamentMemberDAO.findVotes(Long id)
          Find votes.
 

Uses of VoteData in com.hack23.cia.service.impl.commondao.impl
 

Methods in com.hack23.cia.service.impl.commondao.impl that return types with arguments of type VoteData
 List<VoteData> ParliamentMemberDAOImpl.findLastVotes(Long id)
           
 List<VoteData> ParliamentMemberDAOImpl.findLastVotesByBallotId(Long id)
           
 List<VoteData> ParliamentMemberDAOImpl.findVotes(Long id)
           
 

Uses of VoteData in com.hack23.cia.service.impl.content
 

Methods in com.hack23.cia.service.impl.content that return types with arguments of type VoteData
 List<VoteData> ParliamentContentServiceImpl.findLastVotes(Long id)
           
 List<VoteData> ParliamentContentService.findLastVotes(Long id)
          Find last votes.
 List<VoteData> ParliamentContentServiceImpl.findLastVotesByBallotId(Long id)
           
 List<VoteData> ParliamentContentService.findLastVotesByBallotId(Long id)
          Find last votes by ballot id.
 

Uses of VoteData in com.hack23.cia.service.impl.control.agent.sweden.api
 

Methods in com.hack23.cia.service.impl.control.agent.sweden.api that return types with arguments of type VoteData
 List<VoteData> BallotAgent.getVoteResult(BallotData ballot)
          Gets the vote result.
 

Method parameters in com.hack23.cia.service.impl.control.agent.sweden.api with type arguments of type VoteData
 BallotData BallotAgentSupportService.addBallotInformation(Long ballotId, List<VoteData> list)
          Adds the ballot information.
 

Uses of VoteData in com.hack23.cia.service.impl.control.agent.sweden.impl.agents
 

Methods in com.hack23.cia.service.impl.control.agent.sweden.impl.agents that return types with arguments of type VoteData
 List<VoteData> BallotAgentImpl.getVoteResult(BallotData ballot)
          Gets the vote result.
 

Uses of VoteData in com.hack23.cia.service.impl.control.agent.sweden.impl.service
 

Method parameters in com.hack23.cia.service.impl.control.agent.sweden.impl.service with type arguments of type VoteData
 BallotData BallotAgentSupportServiceImpl.addBallotInformation(Long ballotId, List<VoteData> voteResult)
          Adds the ballot information.
 

Uses of VoteData in com.hack23.cia.web.impl.ui.container.content
 

Methods in com.hack23.cia.web.impl.ui.container.content that return types with arguments of type VoteData
protected  GenericUserInterfaceLoaderService<VoteData> HierarchicalContentContainer.getVoteLoaderService()
          Gets the vote loader service.
 

Uses of VoteData in com.hack23.cia.web.impl.ui.form.content
 

Constructors in com.hack23.cia.web.impl.ui.form.content with parameters of type VoteData
VoteForm(UserSessionDto userSessionDTO, VoteData vote)
          Instantiates a new ballot form.
 

Uses of VoteData in com.hack23.cia.web.impl.ui.viewfactory.api.content
 

Methods in com.hack23.cia.web.impl.ui.viewfactory.api.content that return types with arguments of type VoteData
 List<VoteData> ParliamentMemberSummaryModelAndView.getVotes()
          Gets the votes.
 List<VoteData> VotesModelAndView.getVotes()
          Gets the votes.
 

Constructor parameters in com.hack23.cia.web.impl.ui.viewfactory.api.content with type arguments of type VoteData
ParliamentMemberSummaryModelAndView(UserSessionDto userSessionDTO, ControllerAction controllerAction, ParliamentMemberSummaryViewSpecification parliamentMemberSummaryViewSpecification, ParliamentMemberData parliamentMemberData, List<ParliamentMemberVoteCompareResultData> list, List<ParliamentMemberVoteCompareResultData> list2, List<ParliamentMemberVoteCompareResultData> list3, List<ParliamentMemberVoteCompareResultData> list4, List<VoteData> list5, RegisterInformationData registerInformationData)
          Instantiates a new parliament member summary model and view.
VotesModelAndView(UserSessionDto userSessionDTO, ControllerAction controllerAction, VotesViewSpecification votesViewSpecification, List<VoteData> list)
          Instantiates a new votes model and view.
 

Uses of VoteData in com.hack23.cia.web.impl.ui.viewfactory.impl.content
 

Methods in com.hack23.cia.web.impl.ui.viewfactory.impl.content that return types with arguments of type VoteData
 List<VoteData> ParliamentMemberSummaryModelAndView.getVotes()
          Gets the votes.
 

Constructor parameters in com.hack23.cia.web.impl.ui.viewfactory.impl.content with type arguments of type VoteData
ParliamentMemberSummaryModelAndView(UserSessionDto userSessionDTO, ControllerAction controllerAction, ParliamentMemberSummaryModelAndView.ParliamentMemberSummaryViewSpecification parliamentMemberSummaryViewSpecification, ParliamentMemberData parliamentMemberData, List<ParliamentMemberVoteCompareResultData> list, List<ParliamentMemberVoteCompareResultData> list2, List<ParliamentMemberVoteCompareResultData> list3, List<ParliamentMemberVoteCompareResultData> list4, List<VoteData> list5, RegisterInformationData registerInformationData)
          Instantiates a new parliament member summary model and view.
 



Copyright © 2008-2009 www.hack23.com. All Rights Reserved.