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


001:        /*******************************************************************************
002:         * Copyright (c) 2006, 2007 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.pde.ui.launcher;
011:
012:        import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy;
013:        import org.eclipse.jdt.launching.IJavaLaunchConfigurationConstants;
014:        import org.eclipse.pde.core.plugin.IPluginModelBase;
015:        import org.eclipse.pde.core.plugin.PluginRegistry;
016:
017:        /**
018:         * Initilizes launch configuration attributes for newly-created OSGi Framework 
019:         * launch configurations
020:         * 
021:         * <p>
022:         * Clients may instantiate or subclass this class
023:         * </p>
024:         * 
025:         * @since 3.3
026:         */
027:        public class OSGiLaunchConfigurationInitializer {
028:
029:            protected static final String DEFAULT = "default"; //$NON-NLS-1$
030:
031:            /**
032:             * Initializes some attributes on a newly-created launch configuration
033:             * 
034:             * @param configuration
035:             * 			the launch configuration
036:             */
037:            public void initialize(ILaunchConfigurationWorkingCopy configuration) {
038:                initializeFrameworkDefaults(configuration);
039:                initializeBundleState(configuration);
040:                initializeSourcePathProvider(configuration);
041:            }
042:
043:            /**
044:             * Sets the source provider ID
045:             * 
046:             * @param configuration
047:             * 			the launch configuration
048:             */
049:            protected void initializeSourcePathProvider(
050:                    ILaunchConfigurationWorkingCopy configuration) {
051:                configuration
052:                        .setAttribute(
053:                                IJavaLaunchConfigurationConstants.ATTR_SOURCE_PATH_PROVIDER,
054:                                PDESourcePathProvider.ID);
055:            }
056:
057:            /**
058:             * Initializes the start level and auto-start attributes
059:             * 
060:             * @param configuration
061:             * 			the launch configuration
062:             */
063:            protected void initializeFrameworkDefaults(
064:                    ILaunchConfigurationWorkingCopy configuration) {
065:                configuration.setAttribute(
066:                        IPDELauncherConstants.DEFAULT_AUTO_START, true);
067:                configuration.setAttribute(
068:                        IPDELauncherConstants.DEFAULT_START_LEVEL, 4);
069:            }
070:
071:            /**
072:             * Initializes the checked/unchecked state of bundles
073:             * 
074:             * @param configuration
075:             * 			the launch configuration
076:             */
077:            protected void initializeBundleState(
078:                    ILaunchConfigurationWorkingCopy configuration) {
079:                StringBuffer explugins = new StringBuffer();
080:                StringBuffer wsplugins = new StringBuffer();
081:                IPluginModelBase[] models = PluginRegistry.getActiveModels();
082:                for (int i = 0; i < models.length; i++) {
083:                    String id = models[i].getPluginBase().getId();
084:                    boolean inWorkspace = models[i].getUnderlyingResource() != null;
085:                    appendBundle(inWorkspace ? wsplugins : explugins, id);
086:                }
087:                configuration.setAttribute(
088:                        IPDELauncherConstants.WORKSPACE_BUNDLES, wsplugins
089:                                .toString());
090:                configuration.setAttribute(
091:                        IPDELauncherConstants.TARGET_BUNDLES, explugins
092:                                .toString());
093:                configuration.setAttribute(IPDELauncherConstants.AUTOMATIC_ADD,
094:                        true);
095:            }
096:
097:            private void appendBundle(StringBuffer buffer, String bundleID) {
098:                if (buffer.length() > 0)
099:                    buffer.append(","); //$NON-NLS-1$
100:                buffer.append(bundleID);
101:                buffer.append("@"); //$NON-NLS-1$
102:                buffer.append(getStartLevel(bundleID));
103:                buffer.append(":"); //$NON-NLS-1$
104:                buffer.append(getAutoStart(bundleID));
105:            }
106:
107:            /**
108:             * Returns the bundle's start level
109:             * 
110:             * @param bundleID
111:             * 			the bundle ID
112:             * @return the start level for the given bundle or the string <code>default</code>
113:             */
114:            protected String getStartLevel(String bundleID) {
115:                return DEFAULT;
116:            }
117:
118:            /**
119:             * Returns whether the bundle should be started automatically
120:             * @param bundleID
121:             * 			the bundle ID
122:             * @return <code>true</code>, <code>false</code>, or <code>default</code>
123:             */
124:            protected String getAutoStart(String bundleID) {
125:                return DEFAULT;
126:            }
127:
128:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.