Source Code Cross Referenced for ImageConstants.java in  » GIS » udig-1.1 » net » refractions » udig » project » ui » internal » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » GIS » udig 1.1 » net.refractions.udig.project.ui.internal 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         *    uDig - User Friendly Desktop Internet GIS client
003:         *    http://udig.refractions.net
004:         *    (C) 2004, Refractions Research Inc.
005:         *
006:         *    This library is free software; you can redistribute it and/or
007:         *    modify it under the terms of the GNU Lesser General Public
008:         *    License as published by the Free Software Foundation;
009:         *    version 2.1 of the License.
010:         *
011:         *    This library is distributed in the hope that it will be useful,
012:         *    but WITHOUT ANY WARRANTY; without even the implied warranty of
013:         *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
014:         *    Lesser General Public License for more details.
015:         *
016:         */
017:        package net.refractions.udig.project.ui.internal;
018:
019:        import net.refractions.udig.core.internal.Icons;
020:
021:        /**
022:         * Image constants for use with Images class.
023:         * 
024:         * @author jgarnett
025:         */
026:        public interface ImageConstants {
027:
028:            // ELOCALTOOL
029:            //
030:            /** Up arrow */
031:            public final static String UP_CO = Icons.ELOCALTOOL + "up_co.gif"; //$NON-NLS-1$
032:            /** Down arrow */
033:            public final static String DOWN_CO = Icons.ELOCALTOOL
034:                    + "down_co.gif"; //$NON-NLS-1$
035:            /** Left arrow * */
036:            public final static String LEFT_CO = Icons.ELOCALTOOL
037:                    + "left_co.gif"; //$NON-NLS-1$
038:            /** Right arrow * */
039:            public final static String RIGHT_CO = Icons.ELOCALTOOL
040:                    + "left_co.gif"; //$NON-NLS-1$
041:            /** drop down arrow * */
042:            public final static String DROP_DOWN_BUTTON = Icons.OVERLAY
043:                    + "drop_down_ovr.gif"; //$NON-NLS-1$
044:
045:            // OVR
046:            //
047:
048:            /** <code>WARN_OVR</code> indicates render produced warnings, often due to reprojection */
049:            public final static String WARN_OVR = Icons.OVERLAY
050:                    + "warning_ovr.gif"; //$NON-NLS-1$
051:
052:            /** <code>CHANGED_OVR</code> indicates layer has been changed, and a commit is needed */
053:            public final static String CHANGED_OVR = Icons.OVERLAY
054:                    + "changed_ovr.gif"; //$NON-NLS-1$
055:
056:            /** <code>WRITE_OVR</code> indicates layer is editable */
057:            public final static String WRITE_OVR = Icons.OVERLAY
058:                    + "write_ovr.gif"; //$NON-NLS-1$
059:
060:            /** <code>ERROR_OVR</code> indicates renderer was unable to function, check log */
061:            public final static String ERROR_OVR = Icons.OVERLAY
062:                    + "error_ovr.gif"; //$NON-NLS-1$
063:
064:            /** <code>HUH_OVR</code> indicates data could not be located for layer */
065:            public final static String HUH_OVR = Icons.OVERLAY + "huh_ovr.gif"; //$NON-NLS-1$
066:
067:            /** <code>CONFIG_OVR</code> indicates service providing data is not configured properly */
068:            public final static String UNCONFIGURED_OVR = Icons.OVERLAY
069:                    + "unconfigured_ovr.gif"; //$NON-NLS-1$
070:
071:            /**
072:             * <code>WAIT_OVR</code> rendering process has started (requests have been made), please wait
073:             * ...
074:             */
075:            public final static String WAIT_OVR = Icons.OVERLAY
076:                    + "wait_ovr.gif"; //$NON-NLS-1$
077:
078:            /** <code>CLOCK0_OVR</code> rendering process is now updaing the screen ... */
079:            public final static String CLOCK0_OVR = Icons.OVERLAY
080:                    + "clock0_ovr.gif"; //$NON-NLS-1$
081:            /** <code>CLOCK1_OVR</code> rendering process is now updaing the screen ... */
082:            public final static String CLOCK1_OVR = Icons.OVERLAY
083:                    + "clock1_ovr.gif"; //$NON-NLS-1$
084:            /** <code>CLOCK2_OVR</code> rendering process is now updaing the screen ... */
085:            public final static String CLOCK2_OVR = Icons.OVERLAY
086:                    + "clock2_ovr.gif"; //$NON-NLS-1$
087:            /** <code>CLOCK3_OVR</code> rendering process is now updaing the screen ... */
088:            public final static String CLOCK3_OVR = Icons.OVERLAY
089:                    + "clock3_ovr.gif"; //$NON-NLS-1$
090:            /** <code>CLOCK4_OVR</code> rendering process is now updaing the screen ... */
091:            public final static String CLOCK4_OVR = Icons.OVERLAY
092:                    + "clock4_ovr.gif"; //$NON-NLS-1$
093:            /** <code>CLOCK5_OVR</code> rendering process is now updaing the screen ... */
094:            public final static String CLOCK5_OVR = Icons.OVERLAY
095:                    + "clock5_ovr.gif"; //$NON-NLS-1$
096:            /** <code>CLOCK6_OVR</code> rendering process is now updaing the screen ... */
097:            public final static String CLOCK6_OVR = Icons.OVERLAY
098:                    + "clock6_ovr.gif"; //$NON-NLS-1$
099:            /** <code>CLOCK7_OVR</code> rendering process is now updaing the screen ... */
100:            public final static String CLOCK7_OVR = Icons.OVERLAY
101:                    + "clock7_ovr.gif"; //$NON-NLS-1$
102:
103:            /** <code>SELECT_UNDR</code> underlay used to indicate something is selectable... */
104:            public final static String SELECT_UDR = Icons.OVERLAY
105:                    + "select_udr.gif"; //$NON-NLS-1$
106:
107:            // WIZBAN
108:            //
109:            /** New Wizard banner */
110:            public final static String NEW_WIZBAN = Icons.WIZBAN
111:                    + "new_wiz.gif"; //$NON-NLS-1$
112:            /** New folder wizard banner */
113:            public final static String NEWFOLDER_WIZBAN = Icons.WIZBAN
114:                    + "newfolder_wiz.gif"; //$NON-NLS-1$
115:            /** New Layer banner */
116:            public final static String NEWLAYER_WIZBAN = Icons.WIZBAN
117:                    + "newlayer_wiz.gif"; //$NON-NLS-1$
118:            /** New Map banner */
119:            public final static String NEWMAP_WIZBAN = Icons.WIZBAN
120:                    + "newmap_wiz.gif"; //$NON-NLS-1$
121:            /** New Page banner */
122:            public final static String NEWPAGE_WIZBAN = Icons.WIZBAN
123:                    + "newpage_wiz.gif"; //$NON-NLS-1$    
124:            /** New Project banner */
125:            public final static String NEWPROJECT_WIZBAN = Icons.WIZBAN
126:                    + "newprj_wiz.gif"; //$NON-NLS-1$
127:            /** New Template banner */
128:            public final static String NEWTEMPLATE_WIZBAN = Icons.WIZBAN
129:                    + "newtemplate_wiz.gif"; //$NON-NLS-1$
130:            /** Choose Layer banner */
131:            public final static String CHOOSE_LAYER_WIZBAN = Icons.WIZBAN
132:                    + "chooselayer_wiz.gif"; //$NON-NLS-1$
133:            public static final String PRIORITY_CRITICAL = Icons.MISC
134:                    + "priority_critical_obj.gif"; //$NON-NLS-1$
135:            public static final String PRIORITY_HIGH = Icons.MISC
136:                    + "priority_error_obj.gif"; //$NON-NLS-1$
137:            public static final String PRIORITY_WARNING = Icons.MISC
138:                    + "priority_warning_obj.gif"; //$NON-NLS-1$
139:            public static final String PRIORITY_LOW = Icons.MISC
140:                    + "priority_info_obj.gif"; //$NON-NLS-1$
141:            public static final String PRIORITY_TRIVIAL = Icons.MISC
142:                    + "priority_minor_obj.gif"; //$NON-NLS-1$
143:
144:            public static final String RESOLUTION_RESOLVED = Icons.MISC
145:                    + "resolved.png"; //$NON-NLS-1$
146:            public static final String RESOLUTION_UNKNOWN = Icons.MISC
147:                    + "unknown.png"; //$NON-NLS-1$
148:            public static final String RESOLUTION_UNRESOLVED = Icons.MISC
149:                    + "unresolved.png"; //$NON-NLS-1$
150:            public static final String RESOLUTION_VIEWED = Icons.MISC
151:                    + "viewed.png"; //$NON-NLS-1$
152:
153:            public static final String GOTO_ISSUE = Icons.ELOCALTOOL
154:                    + "goto_issue.gif"; //$NON-NLS-1$
155:            public static final String DELETE = Icons.ETOOL + "delete.gif"; //$NON-NLS-1$
156:            public static final String DELETE_GROUP = Icons.ETOOL
157:                    + "delete_group.gif"; //$NON-NLS-1$
158:            public static final String LINKED_ENABLED_CO = Icons.ELOCALTOOL
159:                    + "link_co.gif"; //$NON-NLS-1$
160:            public static final String LINKED_DISABLED_CO = Icons.DLOCALTOOL
161:                    + "link_co.gif"; //$NON-NLS-1$
162:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.