MinistryIconConstants.java

  1. package com.hack23.cia.web.impl.ui.application.views.user.goverment.pagemode;

  2. import com.vaadin.icons.VaadinIcons;

  3. /**
  4.  * The Interface MinistryIconConstants.
  5.  */
  6. public interface MinistryIconConstants {

  7.     /** The info icon. */
  8.     // Basic Icons
  9.     VaadinIcons INFO_ICON = VaadinIcons.INFO_CIRCLE;

  10.     /** The flag icon. */
  11.     VaadinIcons FLAG_ICON = VaadinIcons.FLAG;

  12.     /** The group icon. */
  13.     VaadinIcons GROUP_ICON = VaadinIcons.GROUP;

  14.     /** The chart icon. */
  15.     // Chart Icons
  16.     VaadinIcons CHART_ICON = VaadinIcons.CHART;

  17.     /** The chart line. */
  18.     VaadinIcons CHART_LINE = VaadinIcons.CHART_LINE;

  19.     /** The calendar icon. */
  20.     // Time Icons
  21.     VaadinIcons CALENDAR_ICON = VaadinIcons.CALENDAR;

  22.     /** The calendar clock. */
  23.     VaadinIcons CALENDAR_CLOCK = VaadinIcons.CALENDAR_CLOCK;

  24.     /** The clock icon. */
  25.     VaadinIcons CLOCK_ICON = VaadinIcons.CLOCK;

  26.     /** The file icon. */
  27.     // Document Icons
  28.     VaadinIcons FILE_ICON = VaadinIcons.FILE_TEXT;

  29.     /** The file o icon. */
  30.     VaadinIcons FILE_O_ICON = VaadinIcons.FILE_O;

  31.     /** The file presentation. */
  32.     VaadinIcons FILE_PRESENTATION = VaadinIcons.FILE_PRESENTATION;

  33.     /** The file text o. */
  34.     VaadinIcons FILE_TEXT_O = VaadinIcons.FILE_TEXT_O;

  35.     /** The tasks icon. */
  36.     // Task Icons
  37.     VaadinIcons TASKS_ICON = VaadinIcons.TASKS;

  38.     /** The task icon. */
  39.     VaadinIcons TASK_ICON = VaadinIcons.TASKS;
  40. }