Source Code Cross Referenced for ObjectActionContributorManager.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, 2006 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.core.runtime.IConfigurationElement;
017:        import org.eclipse.core.runtime.IExtension;
018:        import org.eclipse.core.runtime.dynamichelpers.IExtensionTracker;
019:        import org.eclipse.jface.action.IMenuManager;
020:        import org.eclipse.jface.viewers.ISelection;
021:        import org.eclipse.jface.viewers.ISelectionProvider;
022:        import org.eclipse.jface.viewers.IStructuredSelection;
023:        import org.eclipse.ui.IWorkbenchPart;
024:
025:        /**
026:         * This manager is used to populate a popup menu manager with actions
027:         * for a given type.
028:         */
029:        public class ObjectActionContributorManager extends
030:                ObjectContributorManager {
031:            private static ObjectActionContributorManager sharedInstance;
032:
033:            /**
034:             * PopupMenuManager constructor.
035:             */
036:            public ObjectActionContributorManager() {
037:                super ();
038:                loadContributors();
039:            }
040:
041:            /**
042:             * Contributes submenus and/or actions applicable to the selection in the
043:             * provided viewer into the provided popup menu.
044:             * 
045:             * @param part the part being contributed to
046:             * @param popupMenu the menu being contributed to
047:             * @param selProv the selection provider
048:             * @return whether anything was contributed
049:             */
050:            public boolean contributeObjectActions(IWorkbenchPart part,
051:                    IMenuManager popupMenu, ISelectionProvider selProv) {
052:                // Get a selection.	
053:                ISelection selection = selProv.getSelection();
054:                if (selection == null) {
055:                    return false;
056:                }
057:
058:                // Convert the selection into an element vector.
059:                // According to the dictionary, a selection is "one that
060:                // is selected", or "a collection of selected things".  
061:                // In reflection of this, we deal with one or a collection.
062:                List elements = null;
063:                if (selection instanceof  IStructuredSelection) {
064:                    elements = ((IStructuredSelection) selection).toList();
065:                } else {
066:                    elements = new ArrayList(1);
067:                    elements.add(selection);
068:                }
069:
070:                List contributors = getContributors(elements);
071:
072:                if (contributors.isEmpty()) {
073:                    return false;
074:                }
075:
076:                // First pass, add the menus and collect the overrides. Prune from the
077:                // list any non-applicable contributions.
078:                boolean actualContributions = false;
079:                ArrayList overrides = new ArrayList(4);
080:                for (Iterator it = contributors.iterator(); it.hasNext();) {
081:                    IObjectActionContributor contributor = (IObjectActionContributor) it
082:                            .next();
083:                    if (!isApplicableTo(elements, contributor)) {
084:                        it.remove();
085:                        continue;
086:                    }
087:                    if (contributor.contributeObjectMenus(popupMenu, selProv)) {
088:                        actualContributions = true;
089:                    }
090:                    contributor.contributeObjectActionIdOverrides(overrides);
091:                }
092:
093:                // Second pass, add the contributions that are applicable to
094:                // the selection.
095:                for (Iterator it = contributors.iterator(); it.hasNext();) {
096:                    IObjectActionContributor contributor = (IObjectActionContributor) it
097:                            .next();
098:                    if (contributor.contributeObjectActions(part, popupMenu,
099:                            selProv, overrides)) {
100:                        actualContributions = true;
101:                    }
102:                }
103:                return actualContributions;
104:            }
105:
106:            /**
107:             * Returns the shared instance of this manager.
108:             * @return the shared instance of this manager
109:             */
110:            public static ObjectActionContributorManager getManager() {
111:                if (sharedInstance == null) {
112:                    sharedInstance = new ObjectActionContributorManager();
113:                }
114:                return sharedInstance;
115:            }
116:
117:            /**
118:             * Loads the contributors from the workbench's registry.
119:             */
120:            private void loadContributors() {
121:                ObjectActionContributorReader reader = new ObjectActionContributorReader();
122:                reader.readPopupContributors(this );
123:            }
124:
125:            /* (non-Javadoc)
126:             * @see org.eclipse.core.runtime.dynamicHelpers.IExtensionChangeHandler#addExtension(org.eclipse.core.runtime.dynamicHelpers.IExtensionTracker, org.eclipse.core.runtime.IExtension)
127:             */
128:            public void addExtension(IExtensionTracker tracker,
129:                    IExtension addedExtension) {
130:                IConfigurationElement[] addedElements = addedExtension
131:                        .getConfigurationElements();
132:                for (int i = 0; i < addedElements.length; i++) {
133:                    ObjectActionContributorReader reader = new ObjectActionContributorReader();
134:                    reader.setManager(this);
135:                    reader.readElement(addedElements[i]);
136:                }
137:            }
138:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.