Source Code Cross Referenced for CloseAllSavedAction.java in  » IDE-Eclipse » ui-workbench » org » eclipse » ui » internal » 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 » IDE Eclipse » ui workbench » org.eclipse.ui.internal 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*******************************************************************************
002:         * Copyright (c) 2000, 2005 IBM Corporation and others.
003:         * All rights reserved. This program and the accompanying materials
004:         * are made available under the terms of the Eclipse Public License v1.0
005:         * which accompanies this distribution, and is available at
006:         * http://www.eclipse.org/legal/epl-v10.html
007:         *
008:         * Contributors:
009:         *     IBM Corporation - initial API and implementation
010:         *******************************************************************************/package org.eclipse.ui.internal;
011:
012:        import java.util.ArrayList;
013:        import java.util.Iterator;
014:        import java.util.List;
015:
016:        import org.eclipse.ui.IEditorPart;
017:        import org.eclipse.ui.IEditorReference;
018:        import org.eclipse.ui.IPropertyListener;
019:        import org.eclipse.ui.IWorkbenchPage;
020:        import org.eclipse.ui.IWorkbenchPart;
021:        import org.eclipse.ui.IWorkbenchWindow;
022:
023:        /**
024:         *	Closes all editors except ones with unsaved changes.
025:         */
026:        public class CloseAllSavedAction extends PageEventAction implements 
027:                IPropertyListener {
028:
029:            /**
030:             * List of parts (element type: <code>IWorkbenchPart</code>)
031:             * against which this class has outstanding property listeners registered.
032:             */
033:            private List partsWithListeners = new ArrayList(1);
034:
035:            /**
036:             * Create an instance of this class.
037:             * @param window the window
038:             */
039:            public CloseAllSavedAction(IWorkbenchWindow window) {
040:                super (WorkbenchMessages.CloseAllSavedAction_text, window);
041:                setToolTipText(WorkbenchMessages.CloseAllSavedAction_toolTip);
042:                // @issue Should create a ID in IWorkbenchActionConstants when it becames API?
043:                setId("closeAllSaved"); //$NON-NLS-1$
044:                updateState();
045:                window.getWorkbench().getHelpSystem().setHelp(this ,
046:                        IWorkbenchHelpContextIds.CLOSE_ALL_SAVED_ACTION);
047:                setActionDefinitionId("org.eclipse.ui.file.closeAllSaved"); //$NON-NLS-1$
048:            }
049:
050:            /* (non-Javadoc)
051:             * Method declared on PageEventAction.
052:             */
053:            public void pageActivated(IWorkbenchPage page) {
054:                super .pageActivated(page);
055:                updateState();
056:            }
057:
058:            /* (non-Javadoc)
059:             * Method declared on PageEventAction.
060:             */
061:            public void pageClosed(IWorkbenchPage page) {
062:                super .pageClosed(page);
063:                updateState();
064:            }
065:
066:            /* (non-Javadoc)
067:             * Method declared on PartEventAction.
068:             */
069:            public void partClosed(IWorkbenchPart part) {
070:                super .partClosed(part);
071:                if (part instanceof  IEditorPart) {
072:                    part.removePropertyListener(this );
073:                    partsWithListeners.remove(part);
074:                    updateState();
075:                }
076:            }
077:
078:            /* (non-Javadoc)
079:             * Method declared on PartEventAction.
080:             */
081:            public void partOpened(IWorkbenchPart part) {
082:                super .partOpened(part);
083:                if (part instanceof  IEditorPart) {
084:                    part.addPropertyListener(this );
085:                    partsWithListeners.add(part);
086:                    updateState();
087:                }
088:            }
089:
090:            /* (non-Javadoc)
091:             * Method declared on IPropertyListener.
092:             */
093:            public void propertyChanged(Object source, int propID) {
094:                if (source instanceof  IEditorPart) {
095:                    if (propID == IEditorPart.PROP_DIRTY) {
096:                        updateState();
097:                    }
098:                }
099:            }
100:
101:            /* (non-Javadoc)
102:             * Method declared on Action.
103:             */
104:            public void run() {
105:                if (getWorkbenchWindow() == null) {
106:                    // action has been dispose
107:                    return;
108:                }
109:                IWorkbenchPage page = getActivePage();
110:                if (page != null) {
111:                    ((WorkbenchPage) page).closeAllSavedEditors();
112:                }
113:            }
114:
115:            /**
116:             * Enable the action if there at least one editor open.
117:             */
118:            private void updateState() {
119:                IWorkbenchPage page = getActivePage();
120:                if (page == null) {
121:                    setEnabled(false);
122:                    return;
123:                }
124:                IEditorReference editors[] = page.getEditorReferences();
125:                for (int i = 0; i < editors.length; i++) {
126:                    if (!editors[i].isDirty()) {
127:                        setEnabled(true);
128:                        return;
129:                    }
130:                }
131:                setEnabled(false);
132:            }
133:
134:            /* (non-Javadoc)
135:             * Method declared on PageEventAction.
136:             */
137:            public void dispose() {
138:                super .dispose();
139:                for (Iterator it = partsWithListeners.iterator(); it.hasNext();) {
140:                    IWorkbenchPart part = (IWorkbenchPart) it.next();
141:                    part.removePropertyListener(this);
142:                }
143:                partsWithListeners.clear();
144:            }
145:
146:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.