Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 25575 Details for
Bug 102866
Need API for updating the splash screen's progress bar
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
patch to org.eclipse.osgi
patch.txt (text/plain), 1.33 KB, created by
Boris Bokowski
on 2005-08-02 14:05:58 EDT
(
hide
)
Description:
patch to org.eclipse.osgi
Filename:
MIME Type:
Creator:
Boris Bokowski
Created:
2005-08-02 14:05:58 EDT
Size:
1.33 KB
patch
obsolete
>Index: eclipseAdaptor/src/org/eclipse/core/runtime/adaptor/EclipseStarter.java >=================================================================== >RCS file: /home/eclipse/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/core/runtime/adaptor/EclipseStarter.java,v >retrieving revision 1.99 >diff -u -r1.99 EclipseStarter.java >--- eclipseAdaptor/src/org/eclipse/core/runtime/adaptor/EclipseStarter.java 9 Jun 2005 15:26:31 -0000 1.99 >+++ eclipseAdaptor/src/org/eclipse/core/runtime/adaptor/EclipseStarter.java 2 Aug 2005 18:04:53 -0000 >@@ -454,6 +454,22 @@ > } > }; > context.registerService(Runnable.class.getName(), handler, properties); >+ >+ // register the output stream to the launcher if it exists >+ try { >+ Method method = endSplashHandler.getClass().getMethod( >+ "getOutputStream", new Class[0]); //$NON-NLS-1$ >+ Object outputStream = method >+ .invoke(endSplashHandler, new Object[0]); >+ if (outputStream instanceof OutputStream) { >+ Dictionary osProperties = new Hashtable(); >+ osProperties.put("name", "splashstream"); //$NON-NLS-1$//$NON-NLS-2$ >+ context.registerService(OutputStream.class.getName(), >+ outputStream, osProperties); >+ } >+ } catch (Exception ex) { >+ // ignore >+ } > } > > private static URL searchForBundle(String name, String parent) throws MalformedURLException {
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 102866
:
25574
| 25575 |
25576