Source Code Cross Referenced for CodeFragmentAction.java in  » XML-UI » xui32 » com » xoetrope » editor » netbeans » actions » 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 » XML UI » xui32 » com.xoetrope.editor.netbeans.actions 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package com.xoetrope.editor.netbeans.actions;
002:
003:        import java.awt.event.ActionEvent;
004:        import javax.swing.AbstractAction;
005:        import javax.swing.ImageIcon;
006:
007:        import net.xoetrope.editor.project.XEditorProject;
008:        import net.xoetrope.xui.XPage;
009:        import net.xoetrope.xui.PageSupport;
010:        import net.xoetrope.xui.XMethodReference;
011:        import net.xoetrope.xui.XProject;
012:        import net.xoetrope.xui.evaluator.XAttributeEvaluator;
013:        import net.xoetrope.xui.exception.XExceptionHandler;
014:
015:        /**
016:         * The action for the code fragments option
017:         * <p> Copyright (c) Xoetrope Ltd., 2001-2006, This software is licensed under
018:         * the GNU Public License (GPL), please see license.txt for more details. If
019:         * you make commercial use of this software you must purchase a commercial
020:         * license from Xoetrope.</p>
021:         * <p> $Revision: 1.8 $</p>
022:         */
023:        public class CodeFragmentAction extends AbstractAction implements 
024:                XAttributeEvaluator {
025:            private XEditorProject currentProject;
026:            private CodeFragmentAction this Action;
027:            private XPage currentPage;
028:            private boolean attributesFinalized;
029:            private int attributeIndex;
030:
031:            private OptionDialog optionDialog;
032:            private Object result;
033:
034:            public CodeFragmentAction(XEditorProject project, XPage page,
035:                    String text, ImageIcon icon, String desc, Integer mnemonic) {
036:                super (text, icon);
037:                currentProject = project;
038:                currentPage = page;
039:                putValue(SHORT_DESCRIPTION, desc);
040:                putValue("MnemonicKey" /*Action.MNEMONIC_KEY*/, mnemonic);
041:                this Action = this ;
042:                optionDialog = new OptionDialog(
043:                        null/*currentProject.getFrame()*/,
044:                        "Enter the fragment values");
045:                optionDialog.setLocationRelativeTo(currentPage);
046:            }
047:
048:            public void actionPerformed(ActionEvent e) {
049:                /** @todo fix this */
050:                /*    String command = e.getActionCommand();
051:                 if ( command.compareTo( "Component fragment..." ) == 0 ) {
052:                 // Find out where the last fragment was loaded from
053:                 Preferences prefs = Preferences.userNodeForPackage( BuildProperties.class );
054:                 String fragmentsDir = prefs.get( "CodeFragmentsDir", currentProject.getPath() );
055:
056:                 // Ask for the new/latest fragment
057:                 JFileChooser chooser = new JFileChooser( fragmentsDir );
058:                 chooser.setFileFilter( new AFileFilter( "xuif", "XUI component fragment" ) );
059:                 int i = chooser.showOpenDialog( nullcurrentProject.getFrame() );
060:                 if ( i == 0 ) {
061:                 XEditorXuiBuilder pl = ( XEditorXuiBuilder ) ( ( XEditorPageManager )currentProject.getPageManager() ).getSecondaryLoader();
062:                 XPageHolder pageHolder = currentProject.getEditor().getPageHolder();
063:                 try {
064:                 // Set this class as an evaluator of attributes
065:                 pl.setAttributeEvaluator( thisAction );
066:
067:                 // Setup storage for the attributes
068:                 attributeIndex = 0;
069:
070:                 // Locate the component/page fragment
071:                 fragmentsDir = chooser.getSelectedFile().getCanonicalPath();
072:                 prefs.put( "CodeFragmentsDir", fragmentsDir );
073:
074:                 // Do a first pass to evaluate the attributes
075:                 XPage fragment = pl.loadPage( XPage.XUI_SWING_PACKAGE, fragmentsDir, false, true );
076:                 if ( promptForAttributes() ) {
077:                 // Do a second pass if necessary to insert the attribute values
078:                 if ( attributeIndex > 0 ) {
079:                 attributeIndex = 0;
080:                 fragment = pl.loadPage( XPage.XUI_SWING_PACKAGE, fragmentsDir, false, true );
081:                 }
082:
083:                 // Move the components to the current page
084:                 Component components[] = fragment.getComponents();
085:                 int numChildren = components.length;
086:                 for ( int j = 0; j < numChildren; j++ ) {
087:                 Component newComp = components[ j ];
088:                 currentPage.add( newComp );
089:                 newComp.addKeyListener( currentPage.getEventHandler() );
090:                 newComp.addMouseListener( currentPage.getEventHandler() );
091:                 }
092:
093:                 // Remove the components from their old context
094:                 fragment.removeAll();
095:                 currentPage.doLayout();
096:                 currentPage.repaint();
097:
098:                 for ( int j = 0; j < numChildren; j++ )
099:                 pageHolder.selectComponent( components[ j ], j == 0 );
100:                 }
101:
102:                 // Reset the state of the page loader
103:                 pl.setAttributeEvaluator( null );
104:                 }
105:                 catch ( IOException ex ) {
106:                 if ( BuildProperties.DEBUG )
107:                 DebugLogger.logError( "Unable to load the page fragment" );
108:                 }
109:                 }
110:                 }*/
111:            }
112:
113:            /**
114:             * Get the value of an attribute.
115:             * @param page the page being loaded
116:             * @param attributeValue the raw value of the attribute
117:             * @return the evaluated value of the attribute
118:             */
119:            public Object evaluateAttribute(Object instance,
120:                    String attributeValue) {
121:                result = attributeValue;
122:                int pos = attributeValue.indexOf("${fixup");
123:                if (pos >= 0) {
124:                    if (!attributesFinalized) {
125:                        // Add the parameters
126:                        pos = attributeValue.indexOf('(');
127:                        if (attributeValue.indexOf("${fixupValue") >= 0) {
128:                            int endPos1 = attributeValue.indexOf(',') - 1;
129:                            int endPos2 = attributeValue.indexOf(")");
130:                            optionDialog.addOption(OptionDialog.NUMBER_INPUT,
131:                                    attributeValue.substring(pos + 2, endPos1)
132:                                            .trim(), attributeValue.substring(
133:                                            endPos1 + 2, endPos2).trim());
134:                        } else
135:                            optionDialog.addOption(OptionDialog.TEXT_INPUT,
136:                                    attributeValue.substring(pos + 2,
137:                                            attributeValue.indexOf("')")), "");
138:                        attributeIndex++;
139:                    } else
140:                        return result = optionDialog
141:                                .getOption(attributeIndex++);
142:                }
143:                return result;
144:            }
145:
146:            /**
147:             * Prompt for the paramaterized attribute values
148:             * @return true if the user clicks ok or there is nothing to prompt for
149:             */
150:            private boolean promptForAttributes() {
151:                if (attributeIndex > 0) {
152:                    optionDialog.setVisible(true);
153:                    int result = optionDialog.getStatus();
154:                    if (result == optionDialog.ID_CANCEL)
155:                        return false;
156:                }
157:
158:                attributesFinalized = true;
159:                return true;
160:            }
161:
162:            /**
163:             * Set the current project and complete any initialization that depends on the 
164:             * project reference/instance.
165:             * @param project the current or owning project
166:             */
167:            public void setCurrentProject(XProject project) {
168:                currentProject = (XEditorProject) project;
169:            }
170:
171:            /**
172:             * Get the method reference for the methods named in the attribute
173:             * @param attributeValue the method name
174:             * @return the method reference or null if the referenced/named method cannot be found
175:             */
176:            public XMethodReference getMethodReference(String attributeValue) {
177:                throw new java.lang.UnsupportedOperationException();
178:            }
179:
180:            /**
181:             * Get the value of an attribute by evaluating a method reference
182:             * @param page the current page
183:             * @param attributeValue the method name
184:             * @return the method reference or null if the referenced/named method cannot be found
185:             */
186:            public XMethodReference getMethodReference(Object instance,
187:                    String attributeValue) {
188:                throw new java.lang.UnsupportedOperationException();
189:            }
190:
191:            /**
192:             * Explicitly set the result of an evaluation. This method may be used
193:             * by an exception handler to override the result and set a sensible
194:             * value in case of an exception
195:             * @param the new result value
196:             */
197:            public void setResult(Object value) {
198:                result = value;
199:            }
200:
201:            /**
202:             * Explicitly get the result of an evaluation. This method may be used
203:             * by an exception handler to determine the result and set a sensible
204:             * value in case of an exception
205:             * @return the current/intermediate result value
206:             */
207:            public Object getResult() {
208:                return result;
209:            }
210:
211:            /**
212:             * Set an exception handler for processing exceptions
213:             * @param eh the exception handler
214:             */
215:            public void setExceptionHandler(XExceptionHandler eh) {
216:            }
217:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.