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

Packages that use VoteData
com.hack23.cia.model.api.dto.application Data transfer objects, created in service layer used in web layer. 
com.hack23.cia.model.api.dto.sweden   
com.hack23.cia.model.api.sweden Parliament interfaces for objects in the model. 
com.hack23.cia.model.impl.dto.application   
com.hack23.cia.model.impl.dto.sweden   
com.hack23.cia.model.impl.sweden The entity model related to Swedish parliament members votes. 
com.hack23.cia.service.api.user Service API user request/response objects. 
com.hack23.cia.service.impl.admin.agent.sweden.api Swedish Parliament data agent interfaces. 
com.hack23.cia.service.impl.admin.agent.sweden.impl.agents Swedish Parliament data agent implementations. 
com.hack23.cia.service.impl.admin.agent.sweden.impl.service   
com.hack23.cia.service.impl.common Common service implementations. 
com.hack23.cia.service.impl.commondao.api   
com.hack23.cia.service.impl.commondao.impl   
com.hack23.cia.web.impl.ui.form.admin.parliament Admin Forms for objects in the model. 
com.hack23.cia.web.impl.ui.navigationview.admin.parliament Admin navigation views. 
com.hack23.cia.web.impl.ui.viewfactory.api.user User viewfactory api, contains user ModelAndView implementations. 
 

Uses of VoteData in com.hack23.cia.model.api.dto.application
 

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

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

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

Methods in com.hack23.cia.model.api.dto.sweden 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.api.sweden
 

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

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

Methods in com.hack23.cia.model.api.sweden 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 PartyBallotResultData.newVote(VoteData vote)
          New vote.
 void BallotResultData.newVote(VoteData vote)
          New vote.
 void ParliamentMemberBallotRecordData.newVote(VoteData vote)
          New vote.
 

Uses of VoteData in com.hack23.cia.model.impl.dto.application
 

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

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

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

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

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

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

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

Methods in com.hack23.cia.model.impl.sweden 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.service.api.user
 

Methods in com.hack23.cia.service.api.user 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.user 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.admin.agent.sweden.api
 

Methods in com.hack23.cia.service.impl.admin.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.admin.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.admin.agent.sweden.impl.agents
 

Methods in com.hack23.cia.service.impl.admin.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.admin.agent.sweden.impl.service
 

Method parameters in com.hack23.cia.service.impl.admin.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.service.impl.common
 

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

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.web.impl.ui.form.admin.parliament
 

Constructors in com.hack23.cia.web.impl.ui.form.admin.parliament 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.navigationview.admin.parliament
 

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

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

Methods in com.hack23.cia.web.impl.ui.viewfactory.api.user 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.user 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.
VotesModelAndView(UserSessionDto userSessionDTO, ControllerAction controllerAction, VotesModelAndView.VotesViewSpecification votesViewSpecification, List<VoteData> list)
          Instantiates a new votes model and view.
 



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