Source Code Cross Referenced for FocusEventRecordable.java in  » Testing » jacareto » jacareto » record » 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 » Testing » jacareto » jacareto.record 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Jacareto Copyright (c) 2002-2005
003:         * Applied Computer Science Research Group, Darmstadt University of
004:         * Technology, Institute of Mathematics & Computer Science,
005:         * Ludwigsburg University of Education, and Computer Based
006:         * Learning Research Group, Aachen University. All rights reserved.
007:         *
008:         * Jacareto is free software; you can redistribute it and/or
009:         * modify it under the terms of the GNU General Public
010:         * License as published by the Free Software Foundation; either
011:         * version 2 of the License, or (at your option) any later version.
012:         *
013:         * Jacareto is distributed in the hope that it will be useful,
014:         * but WITHOUT ANY WARRANTY; without even the implied warranty of
015:         * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
016:         * General Public License for more details.
017:         *
018:         * You should have received a copy of the GNU General Public
019:         * License along with Jacareto; if not, write to the Free
020:         * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
021:         *
022:         */
023:
024:        package jacareto.record;
025:
026:        import jacareto.comp.Components;
027:        import jacareto.system.Environment;
028:
029:        import java.awt.AWTEvent;
030:        import java.awt.Component;
031:        import java.awt.event.FocusEvent;
032:
033:        import javax.swing.JLabel;
034:
035:        /**
036:         * This class represents focus events which can be recorded.
037:         *
038:         * @author <a href="mailto:cspannagel@web.de">Christian Spannagel</a>
039:         * @version 1.01
040:         */
041:        public class FocusEventRecordable extends ComponentEventRecordable {
042:            /** Whether or not the event is temporary. */
043:            private boolean isTemporary;
044:
045:            /**
046:             * Creates a new focus event recordable with the specified values.
047:             *
048:             * @param env the environment
049:             * @param ID the event id
050:             * @param sourceName the name of the event's source
051:             * @param sourceClass the classname of the event's source
052:             * @param duration the duration
053:             * @param procTime DOCUMENT ME!
054:             * @param componentName the component's name
055:             * @param rootName the name of the root component
056:             * @param isTemporary whether or not the event is temporary
057:             */
058:            public FocusEventRecordable(Environment env, int ID,
059:                    String sourceName, String sourceClass, long duration,
060:                    long procTime, String componentName, String rootName,
061:                    boolean isTemporary) {
062:                super (env, ID, sourceName, sourceClass, duration, procTime,
063:                        componentName, rootName);
064:                setTemporary(isTemporary);
065:            }
066:
067:            /**
068:             * Creates a new focus event recordable with the values of the given event and additional
069:             * information.
070:             *
071:             * @param env the environment
072:             * @param focusEvent the focus event to take the main information from
073:             * @param components the instance which knows the components
074:             * @param duration the duration
075:             * @param procTime DOCUMENT ME!
076:             */
077:            public FocusEventRecordable(Environment env, FocusEvent focusEvent,
078:                    Components components, long duration, long procTime) {
079:                this (env,
080:                        focusEvent.getID(),
081:                        components.getName((Component) focusEvent.getSource()), // The internally generated name of the event source
082:                        Components.getClassName(focusEvent.getSource()),
083:                        duration, procTime,
084:                        focusEvent.getComponent().getName(), // The name of the component set by the programmer
085:
086:                        // of the captured application
087:                        components.getName(components.getRoot(focusEvent
088:                                .getComponent())), focusEvent.isTemporary());
089:            }
090:
091:            /**
092:             * Creates a focus event recordable with default values and no environment. The environment
093:             * should be defined with the method {@link
094:             * jacareto.system.EnvironmentMember#setEnvironment(Environment)} before environment instances
095:             * will be accessed.
096:             */
097:            public FocusEventRecordable() {
098:                this (null, 0, "", "", 0, 0, "", "", false);
099:            }
100:
101:            /**
102:             * Sets whether or not the event is temporary.
103:             *
104:             * @param isTemporary DOCUMENT ME!
105:             */
106:            public void setTemporary(boolean isTemporary) {
107:                this .isTemporary = isTemporary;
108:                fireValuesChanged();
109:            }
110:
111:            /**
112:             * Returns whether or not the event is temporary.
113:             *
114:             * @return DOCUMENT ME!
115:             */
116:            public boolean isTemporary() {
117:                return isTemporary;
118:            }
119:
120:            /**
121:             * Returns a string representation of the input event recordable.
122:             *
123:             * @return the string representation
124:             */
125:            public String toString() {
126:                return "FocusEventRecordable[" + getSourceName() + ",ID="
127:                        + getID() + ",isTemporary=" + isTemporary;
128:            }
129:
130:            /**
131:             * Returns a String which describes the content of the recordable shortly.
132:             *
133:             * @return a string with a short description of the object
134:             */
135:            public String toShortString() {
136:                String eventString = null;
137:
138:                switch (getID()) {
139:                case FocusEvent.FOCUS_GAINED:
140:                    eventString = language
141:                            .getString("Events.FocusEvent.FocusGained");
142:
143:                    break;
144:
145:                case FocusEvent.FOCUS_LOST:
146:                    eventString = language
147:                            .getString("Events.FocusEvent.FocusLost");
148:
149:                    break;
150:                }
151:
152:                return eventString;
153:            }
154:
155:            /**
156:             * Returns the name of the focus event recordable
157:             *
158:             * @return the name
159:             */
160:            public String getElementName() {
161:                return getLanguage().getString(
162:                        "Recordables.FocusEventRecordable.Name");
163:            }
164:
165:            /**
166:             * Returns a description of the recordable.
167:             *
168:             * @return the description
169:             */
170:            public String getElementDescription() {
171:                return getLanguage().getString(
172:                        "Recordables.FocusEventRecordable.Description");
173:            }
174:
175:            /**
176:             * Returns the event with the attributes specified by this recordable (except for the component
177:             * attributes which will be dummy components).
178:             *
179:             * @return DOCUMENT ME!
180:             */
181:            public AWTEvent getEvent() {
182:                return new FocusEvent(new JLabel(), getID(), isTemporary());
183:            }
184:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.