View Javadoc

1   /*
2   Copyright 2010 James Pether Sörling Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 
3   	$Id
4   */
5   
6   package com.hack23.cia.web.common;
7   
8   /***
9    * The Class ImageConstants.
10   */
11  public class ImageConstants {
12  
13  	/*** The Constant ABSENCE_ICON. */
14      public static final String ABSENCE_ICON = "images/tango-icon-theme-0.8.90/32x32/emotes/face-monkey.png"; //$NON-NLS-1$
15  	
16      /*** The Constant ABSENCE_ICON_SMALL. */
17      public static final String ABSENCE_ICON_SMALL = "images/tango-icon-theme-0.8.90/16x16/emotes/face-monkey2.png"; //$NON-NLS-1$
18  
19      /*** The Constant ACTION_ERROR. */
20      public static final String ACTION_ERROR = "images/crystal_project/16x16/agt_stop16x16.png"; //$NON-NLS-1$
21  
22      /*** The Constant BALLOT_IMAGE_SMALL. */
23      public static final String BALLOT_IMAGE_SMALL = "images/crystal_project/16x16/CommunityHelp16x16.png"; //$NON-NLS-1$
24  
25      /*** The Constant CHART_ICON. */
26      public static final String CHART_ICON = "images/crystal_project/32x32/kchart32x32.png"; //$NON-NLS-1$
27  
28      /*** The Constant CHART_IMAGE_SMALL. */
29      public static final String CHART_IMAGE_SMALL = "images/crystal_project/16x16/kchart16x16.png"; //$NON-NLS-1$
30  
31      /*** The Constant GO_PREVIOUS_ICON. */
32      public static final String GO_PREVIOUS_ICON = "images/tango-icon-theme-0.8.90/16x16/actions/go-previous.png"; //$NON-NLS-1$
33          
34      /*** The Constant HOME_ICON. */
35      public static final String HOME_ICON = "images/tango-icon-theme-0.8.90/32x32/actions/go-home.png"; //$NON-NLS-1$
36      
37      /*** The Constant ICON_SIZE. */
38      public static final int ICON_SIZE = 16;
39  
40      /*** The Constant LARGE_ICON_SIZE. */
41      public static final int LARGE_ICON_SIZE = 64;
42  
43      /*** The Constant LOSER_ICON. */
44      public static final String LOSER_ICON = "images/tango-icon-theme-0.8.90/32x32/emotes/face-crying.png"; //$NON-NLS-1$
45  
46      /*** The Constant LOSER_ICON_SMALL. */
47      public static final String LOSER_ICON_SMALL = "images/tango-icon-theme-0.8.90/16x16/emotes/face-crying2.png"; //$NON-NLS-1$
48  
49      /*** The Constant LOYAL_ICON. */
50      public static final String LOYAL_ICON = "images/tango-icon-theme-0.8.90/32x32/emotes/face-angel.png"; //$NON-NLS-1$
51  
52      /*** The Constant LOYAL_ICON_SMALL. */
53      public static final String LOYAL_ICON_SMALL = "images/tango-icon-theme-0.8.90/16x16/emotes/face-angel2.png"; //$NON-NLS-1$
54  
55      /*** The Constant OPEN_SOURCE_LOGO. */
56  	public static final String OPEN_SOURCE_LOGO="images/open-source.jpeg";
57  
58      /*** The Constant POLITICAL_PARTY_ICON_SMALL. */
59      public static final String POLITICAL_PARTY_ICON_SMALL = "images/nuvola/16x16/kdmconfig16x16.png"; //$NON-NLS-1$
60  
61      /*** The Constant POLITICIAN_ICON. */
62      public static final String POLITICIAN_ICON = "images/nuvola/32x32/edu_languages32x32.png"; //$NON-NLS-1$
63  
64      /*** The Constant POLITICIAN_ICON_SMALL. */
65      public static final String POLITICIAN_ICON_SMALL = "images/nuvola/16x16/edu_languages16x16.png"; //$NON-NLS-1$
66  
67      /*** The Constant PRESENCE_ICON. */
68      public static final String PRESENCE_ICON = "images/tango-icon-theme-0.8.90/32x32/emotes/face-glasses.png"; //$NON-NLS-1$
69  
70      /*** The Constant PRESENCE_ICON_SMALL. */
71      public static final String PRESENCE_ICON_SMALL = "images/tango-icon-theme-0.8.90/16x16/emotes/face-glasses2.png"; //$NON-NLS-1$
72  
73      /*** The Constant REBEL_ICON. */
74      public static final String REBEL_ICON = "images/tango-icon-theme-0.8.90/32x32/emotes/face-devilish.png"; //$NON-NLS-1$
75  
76      /*** The Constant REBEL_ICON_SMALL. */
77      public static final String REBEL_ICON_SMALL = "images/tango-icon-theme-0.8.90/16x16/emotes/face-devilish2.png"; //$NON-NLS-1$
78  
79      /*** The Constant WINNER_ICON. */
80      public static final String WINNER_ICON = "images/tango-icon-theme-0.8.90/32x32/emotes/face-grin.png"; //$NON-NLS-1$
81  
82      /*** The Constant WINNER_ICON_SMALL. */
83      public static final String WINNER_ICON_SMALL = "images/tango-icon-theme-0.8.90/16x16/emotes/face-grin2.png"; //$NON-NLS-1$
84  
85      /***
86       * Instantiates a new image constants.
87       */
88      protected ImageConstants() {
89          super();
90      }
91  
92  }