Source Code Cross Referenced for Tool.java in  » Workflow-Engines » osbl-1_0 » org » osbl » client » wings » shell » 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 » Workflow Engines » osbl 1_0 » org.osbl.client.wings.shell 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package org.osbl.client.wings.shell;
002:
003:        import org.wings.SComponent;
004:
005:        import java.beans.PropertyChangeListener;
006:
007:        /**
008:         * @author hengels
009:         * @version $Revision$
010:         */
011:        public interface Tool {
012:            public static final String DEFAULT = "Default";
013:            /**
014:             * The key identifying the <code>Tool</code>.
015:             */
016:            public static final String KEY = "Key";
017:            /**
018:             * The key used for storing the <code>String</code> name
019:             * for the tool, used for the tab.
020:             */
021:            public static final String NAME = "Name";
022:            /**
023:             * The key used for storing a short <code>String</code>
024:             * description for the tool, used for tooltip text.
025:             */
026:            public static final String SHORT_DESCRIPTION = "ShortDescription";
027:            /**
028:             * The key used for storing a longer <code>String</code>
029:             * description for the tool, could be used for context-sensitive help.
030:             */
031:            public static final String LONG_DESCRIPTION = "LongDescription";
032:            /**
033:             * The key used for storing a small <code>SIcon</code>
034:             * for the tool, maybe used for the tab.
035:             */
036:            public static final String SMALL_ICON = "SmallIcon";
037:
038:            /**
039:             * The key used for storing a <code>KeyStroke</code> to be used as the
040:             * accelerator for the tool.
041:             */
042:            public static final String ACCELERATOR_KEY = "AcceleratorKey";
043:
044:            /**
045:             * Gets one of this object's properties
046:             * using the associated key.
047:             * @see #putValue
048:             */
049:            public Object getValue(String key);
050:
051:            /**
052:             * Sets one of this object's properties
053:             * using the associated key. If the value has
054:             * changed, a <code>PropertyChangeEvent</code> is sent
055:             * to listeners.
056:             *
057:             * @param key    a <code>String</code> containing the key
058:             * @param value  an <code>Object</code> value
059:             */
060:            public void putValue(String key, Object value);
061:
062:            /**
063:             * Sets the enabled state of the <code>Tool</code>.  When enabled,
064:             * the tab associated with this object is active.
065:             * If the value has changed, a <code>PropertyChangeEvent</code> is sent
066:             * to listeners.
067:             *
068:             * @param  b true to enable this <code>Tool</code>, false to disable it
069:             */
070:            public void setEnabled(boolean b);
071:
072:            /**
073:             * Returns the enabled state of the <code>Tool</code>. When enabled,
074:             * the tab associated with this object is active.
075:             *
076:             * @return true if this <code>Tool</code> is enabled
077:             */
078:            public boolean isEnabled();
079:
080:            /**
081:             * Adds a <code>PropertyChange</code> listener. Containers and attached
082:             * components use these methods to register interest in this
083:             * <code>Tool</code> object. When its enabled state or other property
084:             * changes, the registered listeners are informed of the change.
085:             *
086:             * @param listener  a <code>PropertyChangeListener</code> object
087:             */
088:            public void addPropertyChangeListener(
089:                    PropertyChangeListener listener);
090:
091:            /**
092:             * Removes a <code>PropertyChange</code> listener.
093:             *
094:             * @param listener  a <code>PropertyChangeListener</code> object
095:             * @see #addPropertyChangeListener
096:             */
097:            public void removePropertyChangeListener(
098:                    PropertyChangeListener listener);
099:
100:            public SComponent getComponent();
101:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.