PageCommandBallotConstants.java

  1. package com.hack23.cia.web.impl.ui.application.views.common.menufactory.api.pagecommands;

  2. import com.hack23.cia.web.impl.ui.application.views.common.pagelinks.api.PageModeMenuCommand;
  3. import com.hack23.cia.web.impl.ui.application.views.common.viewnames.PageMode;
  4. import com.hack23.cia.web.impl.ui.application.views.common.viewnames.UserViews;

  5. /**
  6.  * The Interface PageCommandBallotConstants.
  7.  */
  8. public interface PageCommandBallotConstants {

  9.     /** The command ballot overview. */
  10.     PageModeMenuCommand COMMAND_BALLOT_OVERVIEW = new PageModeMenuCommand(UserViews.BALLOT_VIEW_NAME,
  11.             PageMode.OVERVIEW);

  12.     /** The command ballot charts. */
  13.     PageModeMenuCommand COMMAND_BALLOT_CHARTS = new PageModeMenuCommand(UserViews.BALLOT_VIEW_NAME, PageMode.CHARTS);

  14. }