Source Code Cross Referenced for IExtensions.java in  » IDE-Eclipse » Eclipse-plug-in-development » org » eclipse » pde » core » plugin » 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 » Eclipse plug in development » org.eclipse.pde.core.plugin 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*******************************************************************************
02:         * Copyright (c) 2000, 2006 IBM Corporation and others.
03:         * All rights reserved. This program and the accompanying materials
04:         * are made available under the terms of the Eclipse Public License v1.0
05:         * which accompanies this distribution, and is available at
06:         * http://www.eclipse.org/legal/epl-v10.html
07:         *
08:         * Contributors:
09:         *     IBM Corporation - initial API and implementation
10:         *******************************************************************************/package org.eclipse.pde.core.plugin;
11:
12:        import org.eclipse.core.runtime.CoreException;
13:
14:        /**
15:         * A model object that contains the portion of the plug-in model
16:         * responsible for extensions and extension points. If
17:         * the plug-in contains OSGi manifest file, plugin.xml is
18:         * reduced to extensions and extension points only.
19:         * 
20:         * @since 3.0
21:         */
22:        public interface IExtensions extends IPluginObject {
23:            /**
24:             * A model property that will be used when order of extensions
25:             * changes in this object.
26:             */
27:            String P_EXTENSION_ORDER = "extension_order"; //$NON-NLS-1$
28:
29:            /**
30:             * Adds a new extension to this object. This
31:             * method will throw a CoreException if
32:             * model is not editable.
33:             *
34:             * @param extension the extension object
35:             */
36:            void add(IPluginExtension extension) throws CoreException;
37:
38:            /**
39:             * Adds a new extension point to this object.
40:             * This method will throw a CoreException if the model is not editable.
41:             * 
42:             * @param extensionPoint the extension point
43:             */
44:            void add(IPluginExtensionPoint extensionPoint) throws CoreException;
45:
46:            /**
47:             * Returns extension points defined in this object.
48:             * @return an array of extension point objects
49:             */
50:            IPluginExtensionPoint[] getExtensionPoints();
51:
52:            /**
53:             * Returns extensions defined in this object.
54:             *
55:             * @return an array of extension objects
56:             */
57:            IPluginExtension[] getExtensions();
58:
59:            /**
60:             * Removes an extension from this object. This
61:             * method will throw a CoreException if
62:             * the model is not editable.
63:             *
64:             * @param extension the extension object
65:             */
66:            void remove(IPluginExtension extension) throws CoreException;
67:
68:            /**
69:             * Removes an extension point from this object. This
70:             * method will throw a CoreException if
71:             * the model is not editable.
72:             *
73:             * @param extensionPoint the extension point object
74:             */
75:            void remove(IPluginExtensionPoint extensionPoint)
76:                    throws CoreException;
77:
78:            /**
79:             * Swaps the positions of the provided extensions
80:             * in the list of extensions.
81:             *
82:             * @param e1 the first extension object
83:             * @param e2 the second extension object
84:             */
85:            void swap(IPluginExtension e1, IPluginExtension e2)
86:                    throws CoreException;
87:
88:            /**
89:             * Returns the position of the extension in the receiver.
90:             * @param e the extension
91:             * @return the 0-based index of the extension in the receiver.
92:             */
93:            int getIndexOf(IPluginExtension e);
94:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.