Uses of Interface
com.hack23.cia.model.api.sweden.configuration.BallotData

Packages that use BallotData
Package Description
com.hack23.cia.model.api.application.content Provides... 
com.hack23.cia.model.api.sweden.configuration 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.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... 
 

Uses of BallotData in com.hack23.cia.model.api.application.content
 

Methods in com.hack23.cia.model.api.application.content with parameters of type BallotData
Modifier and Type Method and Description
static String ParliamentChart.getFileName(ParliamentChart chart, ParliamentYearData parliamentYearData, BallotData ballot, LanguageData language)
          Gets the file name.
 

Uses of BallotData in com.hack23.cia.model.api.sweden.configuration
 

Methods in com.hack23.cia.model.api.sweden.configuration that return BallotData
Modifier and Type Method and Description
 BallotData VoteData.getBallotData()
          Gets the ballot data.
 

Methods in com.hack23.cia.model.api.sweden.configuration that return types with arguments of type BallotData
Modifier and Type Method and Description
 List<BallotData> CommitteeReportData.getBallotsData()
          Gets the ballots data.
 

Methods in com.hack23.cia.model.api.sweden.configuration with parameters of type BallotData
Modifier and Type Method and Description
 void CommitteeReportData.addBallotData(BallotData ballot)
          Adds the ballot data.
 void VoteData.setBallotData(BallotData ballot)
          Sets the ballot data.
 

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

Methods in com.hack23.cia.model.api.sweden.factory that return BallotData
Modifier and Type Method and Description
 BallotData SwedenModelFactory.createBallotData()
          Creates a new SwedenModel object.
 

Methods in com.hack23.cia.model.api.sweden.factory that return types with arguments of type BallotData
Modifier and Type Method and Description
 Class<? extends BallotData> SwedenModelFactory.getBallotDataSpec()
          Gets the ballot data spec.
 

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

Classes in com.hack23.cia.model.impl.sweden.content that implement BallotData
Modifier and Type Class and Description
 class Ballot
          The Class Ballot.
 

Methods in com.hack23.cia.model.impl.sweden.content that return BallotData
Modifier and Type Method and Description
 BallotData Vote.getBallotData()
           
 

Methods in com.hack23.cia.model.impl.sweden.content that return types with arguments of type BallotData
Modifier and Type Method and Description
 List<BallotData> CommitteeReport.getBallotsData()
           
 

Methods in com.hack23.cia.model.impl.sweden.content with parameters of type BallotData
Modifier and Type Method and Description
 void CommitteeReport.addBallotData(BallotData ballot)
           
 void Vote.setBallotData(BallotData ballot)
           
 

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

Methods in com.hack23.cia.model.impl.sweden.factory that return BallotData
Modifier and Type Method and Description
 BallotData SwedenModelFactoryImpl.createBallotData()
           
 

Methods in com.hack23.cia.model.impl.sweden.factory that return types with arguments of type BallotData
Modifier and Type Method and Description
 Class<? extends BallotData> SwedenModelFactoryImpl.getBallotDataSpec()
           
 

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

Methods in com.hack23.cia.service.impl.commondao.api that return BallotData
Modifier and Type Method and Description
 BallotData BallotDAO.getLast()
          Gets the last.
 

Methods in com.hack23.cia.service.impl.commondao.api that return types with arguments of type BallotData
Modifier and Type Method and Description
 List<BallotData> BallotDAO.getAll(ParliamentYearData parliamentYearData)
          Gets the all.
 List<BallotData> BallotDAO.getAllCompleted(ParliamentYearData parliamentYearData)
          Gets the all completed.
 List<BallotData> BallotDAO.getAllCreated(ParliamentYearData parliamentYearData)
          Gets the all created.
 List<BallotData> BallotDAO.getAllOrderedByWeek()
          Gets the all ordered by week.
 

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

Methods in com.hack23.cia.service.impl.commondao.impl that return BallotData
Modifier and Type Method and Description
 BallotData BallotDAOImpl.getLast()
           
 

Methods in com.hack23.cia.service.impl.commondao.impl that return types with arguments of type BallotData
Modifier and Type Method and Description
 List<BallotData> BallotDAOImpl.getAll(ParliamentYearData parliamentYearData)
           
 List<BallotData> BallotDAOImpl.getAllCompleted(ParliamentYearData parliamentYearData)
           
 List<BallotData> BallotDAOImpl.getAllCreated(ParliamentYearData parliamentYearData)
           
 List<BallotData> BallotDAOImpl.getAllOrderedByWeek()
           
 

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

Methods in com.hack23.cia.service.impl.content that return BallotData
Modifier and Type Method and Description
 BallotData ParliamentContentService.loadBallotById(Long ballotId)
          Load ballot by id.
 BallotData ParliamentContentServiceImpl.loadBallotById(Long ballotId)
          Load ballot by id.
 

Methods in com.hack23.cia.service.impl.content that return types with arguments of type BallotData
Modifier and Type Method and Description
 List<BallotData> ParliamentContentServiceImpl.getBallots()
          Gets the ballots.
 

Methods in com.hack23.cia.service.impl.content with parameters of type BallotData
Modifier and Type Method and Description
 BinaryContent ParliamentContentService.getGraph(ParliamentChart chart, BallotData ballot, LanguageData language)
          Gets the graph.
 BinaryContent ParliamentContentServiceImpl.getGraph(ParliamentChart chart, BallotData ballot, LanguageData language)
           
 

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

Methods in com.hack23.cia.service.impl.control.agent.sweden.api that return BallotData
Modifier and Type Method and Description
 BallotData BallotAgentSupportService.addBallotInformation(Long ballotId, List<VoteData> list)
          Adds the ballot information.
 

Methods in com.hack23.cia.service.impl.control.agent.sweden.api that return types with arguments of type BallotData
Modifier and Type Method and Description
 List<BallotData> BallotAgent.findBallots(CommitteeReportData commiteeReport)
          Find ballots.
 List<BallotData> BallotAgentSupportService.getAllBallots(ParliamentYearData parliamentYearData)
          Gets the all ballots.
 List<BallotData> BallotAgentSupportService.getAllCompletedBallotar(ParliamentYearData parliamentYearData)
          Gets the all completed ballotar.
 List<BallotData> BallotAgentSupportService.getAllCreatedBallotar(ParliamentYearData parliamentYearData)
          Gets the all created ballotar.
 

Methods in com.hack23.cia.service.impl.control.agent.sweden.api with parameters of type BallotData
Modifier and Type Method and Description
 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 BallotData
Modifier and Type Method and Description
 void CommitteeReportAgentSupportService.addCommitteeReportInformation(Long id, Date decidedDateIfAny, List<BallotData> findVotedballots)
          Adds the committee report information.
 

Uses of BallotData 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 BallotData
Modifier and Type Method and Description
 List<BallotData> BallotAgentImpl.findBallots(CommitteeReportData commiteeReport)
          Find ballots.
 

Methods in com.hack23.cia.service.impl.control.agent.sweden.impl.agents with parameters of type BallotData
Modifier and Type Method and Description
 List<VoteData> BallotAgentImpl.getVoteResult(BallotData ballot)
          Gets the vote result.
 

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

Methods in com.hack23.cia.service.impl.control.agent.sweden.impl.service that return BallotData
Modifier and Type Method and Description
 BallotData BallotAgentSupportServiceImpl.addBallotInformation(Long ballotId, List<VoteData> voteResult)
          Adds the ballot information.
 

Methods in com.hack23.cia.service.impl.control.agent.sweden.impl.service that return types with arguments of type BallotData
Modifier and Type Method and Description
 List<BallotData> BallotAgentSupportServiceImpl.getAllBallots(ParliamentYearData parliamentYearData)
          Gets the all ballots.
 List<BallotData> BallotAgentSupportServiceImpl.getAllCompletedBallotar(ParliamentYearData parliamentYearData)
          Gets the all completed ballotar.
 List<BallotData> BallotAgentSupportServiceImpl.getAllCreatedBallotar(ParliamentYearData parliamentYearData)
          Gets the all created ballotar.
 

Method parameters in com.hack23.cia.service.impl.control.agent.sweden.impl.service with type arguments of type BallotData
Modifier and Type Method and Description
 void CommitteeReportAgentSupportServiceImpl.addCommitteeReportInformation(Long id, Date decidedDateIfAny, List<BallotData> findVotedballot)
          Adds the committee report information.
 

Uses of BallotData 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 BallotData
Modifier and Type Method and Description
protected  GenericUserInterfaceLoaderService<BallotData> HierarchicalContentContainer.getBallotLoaderService()
          Gets the ballot loader service.
 

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

Constructors in com.hack23.cia.web.impl.ui.form.content with parameters of type BallotData
Constructor and Description
BallotForm(UserSessionDto userSessionDTO, BallotData ballot)
          Instantiates a new ballot form.
 



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