Source Code Cross Referenced for PauseRecordableEditor.java in  » Testing » jacareto » jacareto » editor » 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.editor 
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.editor;
025:
026:        import jacareto.record.PauseRecordable;
027:        import jacareto.struct.StructureElement;
028:        import jacareto.system.Environment;
029:        import jacareto.toolkit.event.TextValueListener;
030:        import jacareto.toolkit.swing.LongTextField;
031:
032:        import java.awt.Component;
033:        import java.awt.GridBagConstraints;
034:        import java.awt.GridBagLayout;
035:
036:        import javax.swing.JLabel;
037:        import javax.swing.JPanel;
038:        import javax.swing.event.DocumentEvent;
039:
040:        /**
041:         * An editor for pause recordables.
042:         *
043:         * @author <a href="mailto:cspannagel@web.de">Christian Spannagel</a>
044:         * @version 1.01
045:         */
046:        public class PauseRecordableEditor extends Editor {
047:            /** The editor's component. */
048:            protected JPanel editorPanel;
049:
050:            /** The grid bag constraints. */
051:            protected GridBagConstraints c;
052:
053:            /** The element to edit. */
054:            private StructureElement element;
055:
056:            /** The text area for the duration. */
057:            private LongTextField durationField;
058:
059:            /**
060:             * Create a new pause recordable editor.
061:             *
062:             * @param env the environment
063:             */
064:            public PauseRecordableEditor(Environment env) {
065:                super (env);
066:                editorPanel = new JPanel();
067:                c = new GridBagConstraints();
068:                editorPanel.setLayout(new GridBagLayout());
069:
070:                // The duration field label
071:                c.gridx = 0;
072:                c.gridy = 0;
073:
074:                JLabel durationFieldLabel = new JLabel(
075:                        language
076:                                .getString("Recordables.PauseRecordable.Attributes.Duration")
077:                                + ":");
078:                editorPanel.add(durationFieldLabel, c);
079:
080:                // The duration field
081:                c.gridx = 1;
082:                durationField = new LongTextField(5);
083:                durationField.getDocument().addDocumentListener(
084:                        new TextValueListener() {
085:                            public void textValueChanged(DocumentEvent e) {
086:                                if (isUpdateOnChange && (getElement() != null)) {
087:                                    ((PauseRecordable) getElement())
088:                                            .setDuration(durationField
089:                                                    .getValue());
090:                                }
091:                            }
092:                        });
093:                editorPanel.add(durationField, c);
094:                durationFieldLabel.setLabelFor(durationField);
095:            }
096:
097:            /**
098:             * Returns whether this editor is responsible for a given structure element. This editor is
099:             * responsible for pause recordables.
100:             *
101:             * @param element the structure element
102:             *
103:             * @return <code>true</code> if <i>element</i> is a pause recordable and not <code>null</code>,
104:             *         otherwise <code>false</code>
105:             */
106:            public boolean handlesElement(StructureElement element) {
107:                return (element != null)
108:                        && (element instanceof  PauseRecordable);
109:            }
110:
111:            /**
112:             * Returns the actual structure element to be edited.
113:             *
114:             * @return DOCUMENT ME!
115:             */
116:            public StructureElement getElement() {
117:                return element;
118:            }
119:
120:            /**
121:             * Sets the element to edit.
122:             *
123:             * @param element DOCUMENT ME!
124:             */
125:            public void setElement(StructureElement element) {
126:                this .element = element;
127:
128:                PauseRecordable pause = (PauseRecordable) element;
129:                durationField.setValue(pause.getDuration());
130:            }
131:
132:            /**
133:             * Returns the component of the editor.
134:             *
135:             * @return the editor component
136:             */
137:            public Component getComponent() {
138:                return editorPanel;
139:            }
140:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.