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

Packages that use BallotData
com.hack23.cia.model.api.application Application interfaces for objects in the model. 
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.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.admin.chartservice.api   
com.hack23.cia.service.impl.admin.chartservice.impl   
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. 
 

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

Methods in com.hack23.cia.model.api.application with parameters of type BallotData
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.dto.application
 

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

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

Methods in com.hack23.cia.model.api.dto.sweden that return BallotData
 BallotData SwedenModelFactory.createBallotData()
          Creates a new SwedenModel object.
 

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

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

Methods in com.hack23.cia.model.api.sweden that return BallotData
 BallotData VoteData.getBallotData()
          Gets the ballot data.
 

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

Methods in com.hack23.cia.model.api.sweden with parameters of type BallotData
 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.impl.dto.application
 

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

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

Methods in com.hack23.cia.model.impl.dto.sweden that return BallotData
 BallotData SwedenModelFactoryImpl.createBallotData()
           
 

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

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

Classes in com.hack23.cia.model.impl.sweden that implement BallotData
 class Ballot
          The Class Ballot.
 

Methods in com.hack23.cia.model.impl.sweden that return BallotData
 BallotData Vote.getBallotData()
           
 

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

Methods in com.hack23.cia.model.impl.sweden with parameters of type BallotData
 void CommitteeReport.addBallotData(BallotData ballot)
           
 void Vote.setBallotData(BallotData ballot)
           
 

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

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

Methods in com.hack23.cia.service.impl.admin.agent.sweden.api that return types with arguments of type BallotData
 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.admin.agent.sweden.api with parameters of type BallotData
 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 BallotData
 void CommitteeReportAgentSupportService.addCommitteeReportInformation(Long id, Date decidedDateIfAny, List<BallotData> findVotedballots)
          Adds the committee report information.
 

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

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

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

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

Methods in com.hack23.cia.service.impl.admin.agent.sweden.impl.service that return types with arguments of type BallotData
 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.admin.agent.sweden.impl.service with type arguments of type BallotData
 void CommitteeReportAgentSupportServiceImpl.addCommitteeReportInformation(Long id, Date decidedDateIfAny, List<BallotData> findVotedballot)
          Adds the committee report information.
 

Uses of BallotData in com.hack23.cia.service.impl.admin.chartservice.api
 

Methods in com.hack23.cia.service.impl.admin.chartservice.api with parameters of type BallotData
 List<BinaryContent> BallotChartService.generateBallotCharts(AgencyData agency, BallotData ballot, List<PoliticalPartyData> allPoliticalParties, LanguageData language)
          Generate ballot charts.
 

Method parameters in com.hack23.cia.service.impl.admin.chartservice.api with type arguments of type BallotData
 List<BinaryContent> CommitteeChartService.generateCommitteeCharts(AgencyData agency, CommitteeData committee, List<BallotData> allBallots, List<PoliticalPartyData> allPoliticalParties, LanguageData language)
          Generate committee charts.
 List<BinaryContent> CommitteeReportChartService.generateCommitteeReportCharts(AgencyData agency, CommitteeReportData committeeReport, List<BallotData> allBallots, List<PoliticalPartyData> allPoliticalParties, LanguageData language)
          Generate committee report charts.
 List<BinaryContent> ParliamentChartService.generateParliamentCharts(AgencyData agency, List<BallotData> ballots, List<PoliticalPartyData> politicalParties, LanguageData language)
          Generate parliament charts.
 List<BinaryContent> ParliamentMemberChartService.generateParliamentMemberCharts(AgencyData agency, ParliamentYearData parliamentYearData, List<BallotData> allBallots, ParliamentMemberData parliamentMember, List<PoliticalPartyData> allPoliticalParties, LanguageData language)
          Generate parliament member charts.
 List<BinaryContent> PoliticalPartyChartService.generatePoliticalPartyCharts(AgencyData agency, ParliamentYearData parliamentYearData, List<BallotData> allBallots, PoliticalPartyData politicalParty, LanguageData language)
          Generate political party charts.
 

Uses of BallotData in com.hack23.cia.service.impl.admin.chartservice.impl
 

Methods in com.hack23.cia.service.impl.admin.chartservice.impl with parameters of type BallotData
 List<BinaryContent> BallotChartServiceImpl.generateBallotCharts(AgencyData agency, BallotData ballot, List<PoliticalPartyData> politicalParties, LanguageData language)
           
 

Method parameters in com.hack23.cia.service.impl.admin.chartservice.impl with type arguments of type BallotData
 List<BinaryContent> CommitteeChartServiceImpl.generateCommitteeCharts(AgencyData agency, CommitteeData committee, List<BallotData> allBallots, List<PoliticalPartyData> allPoliticalParties, LanguageData language)
           
 List<BinaryContent> CommitteeReportChartServiceImpl.generateCommitteeReportCharts(AgencyData agency, CommitteeReportData committeeReport, List<BallotData> allBallots, List<PoliticalPartyData> allPoliticalParties, LanguageData language)
           
 List<BinaryContent> ParliamentChartServiceImpl.generateParliamentCharts(AgencyData agency, List<BallotData> ballots, List<PoliticalPartyData> politicalParties, LanguageData language)
           
 List<BinaryContent> ParliamentMemberChartServiceImpl.generateParliamentMemberCharts(AgencyData agency, ParliamentYearData parliamentYearData, List<BallotData> ballots, ParliamentMemberData parliamentMember, List<PoliticalPartyData> politicalParties, LanguageData language)
           
 List<BinaryContent> PoliticalPartyChartServiceImpl.generatePoliticalPartyCharts(AgencyData agency, ParliamentYearData parliamentYearData, List<BallotData> ballots, PoliticalPartyData politicalParty, LanguageData language)
           
 

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

Methods in com.hack23.cia.service.impl.common that return BallotData
 BallotData ParliamentService.loadBallotById(Long ballotId)
          Load ballot by id.
 BallotData ParliamentServiceImpl.loadBallotById(Long ballotId)
          Load ballot by id.
 

Methods in com.hack23.cia.service.impl.common that return types with arguments of type BallotData
 List<BallotData> ParliamentServiceImpl.getBallots()
          Gets the ballots.
 

Methods in com.hack23.cia.service.impl.common with parameters of type BallotData
 BinaryContent ParliamentService.getGraph(ParliamentChart chart, BallotData ballot, LanguageData language)
          Gets the graph.
 BinaryContent ParliamentServiceImpl.getGraph(ParliamentChart chart, BallotData ballot, LanguageData language)
           
 

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

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

Methods in com.hack23.cia.service.impl.commondao.api that return types with arguments of type BallotData
 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
 BallotData BallotDAOImpl.getLast()
           
 

Methods in com.hack23.cia.service.impl.commondao.impl that return types with arguments of type BallotData
 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.web.impl.ui.form.admin.parliament
 

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

Uses of BallotData 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 BallotData
protected  GenericUserInterfaceLoaderService<BallotData> AbstractParliamentNavigationView.getBallotLoaderService()
          Gets the ballot loader service.
 



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