Source Code Cross Referenced for EnvEntriesCellModifier.java in  » Workflow-Engines » osbl-1_0 » gui » section » 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 » gui.section 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /**
002:         * 
003:         */package gui.section;
004:
005:        import org.apache.commons.logging.Log;
006:        import org.apache.commons.logging.LogFactory;
007:        import org.eclipse.jface.viewers.ICellModifier;
008:        import org.eclipse.swt.widgets.TableItem;
009:
010:        import diagram.section.EnvEntry;
011:
012:        /**
013:         * This class implements an ICellModifier
014:         * An ICellModifier is called when the user modifies a cell in the 
015:         * tableViewer
016:         * 
017:         * @author sh
018:         */
019:
020:        public class EnvEntriesCellModifier implements  ICellModifier {
021:            private EnvironmentPropertySection envEntriesSection;
022:
023:            private Log log = LogFactory.getLog(getClass());
024:
025:            /**
026:             * Constructor 
027:             * @param envEntriesEditor an instance of a envEntriesSection 
028:             */
029:            public EnvEntriesCellModifier(
030:                    EnvironmentPropertySection envEntriesSection) {
031:                super ();
032:                this .envEntriesSection = envEntriesSection;
033:            }
034:
035:            /* (non-Javadoc)
036:             * @see org.eclipse.jface.viewers.ICellModifier#canModify(java.lang.Object, java.lang.String)
037:             */
038:            public boolean canModify(Object element, String property) {
039:                return true;
040:            }
041:
042:            /* (non-Javadoc)
043:             * @see org.eclipse.jface.viewers.ICellModifier#getValue(java.lang.Object, java.lang.String)
044:             */
045:            public Object getValue(Object element, String property) {
046:                // Find the index of the column
047:                int columnIndex = envEntriesSection.getColumnNames().indexOf(
048:                        property);
049:
050:                Object result = null;
051:                EnvEntry envEntry = (EnvEntry) element;
052:
053:                switch (columnIndex) {
054:                case 0: // ENV_ENTRY_NAME_COLUMN 
055:                    result = envEntry.getName();
056:                    break;
057:                case 1: // ENV_ENTRY_TYPE_COLUMN
058:                    result = envEntry.getType();
059:                    break;
060:                case 2: // ENV_ENTRY_VALUE_COLUMN
061:                    result = envEntry.getValue();
062:                    break;
063:                default:
064:                    result = "";
065:                }
066:                return result;
067:            }
068:
069:            /* (non-Javadoc)
070:             * @see org.eclipse.jface.viewers.ICellModifier#modify(java.lang.Object, java.lang.String, java.lang.Object)
071:             */
072:            public void modify(Object element, String property, Object value) {
073:
074:                // Find the index of the column 
075:                int columnIndex = envEntriesSection.getColumnNames().indexOf(
076:                        property);
077:
078:                TableItem item = (TableItem) element;
079:                EnvEntry envEntry = (EnvEntry) item.getData();
080:                String valueString = null;
081:
082:                switch (columnIndex) {
083:                case 0: // ENV_ENTRY_NAME_COLUMN
084:                    valueString = ((String) value).trim();
085:                    if (valueString.equals(EnvEntryList.STANDARD_TEXT)
086:                            || valueString.equals("")) {
087:                        log
088:                                .warn("\"(standard)\" or an empty string is not accepted !");
089:                        return;
090:                    }
091:                    envEntry.setName(valueString);
092:                    break;
093:                case 1: // ENV_ENTRY_TYPE_COLUMN
094:                    if (value == null)
095:                        break;
096:                    valueString = ((String) value).trim();
097:                    envEntry.setType(valueString);
098:                    break;
099:                case 2: // ENV_ENTRY_VALUE_COLUMN
100:                    valueString = ((String) value).trim();
101:                    envEntry.setValue(valueString);
102:                    break;
103:                default:
104:                }
105:                envEntriesSection.getEnvEntryList().envEntryChanged(envEntry);
106:            }
107:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.