How to get the Bundle-SymbolicName from an IProject?Does a finally block always get executed in Java?Create ArrayList from arrayHow do I call one constructor from another in Java?Fastest way to determine if an integer's square root is an integerHow do I read / convert an InputStream into a String in Java?How do I generate random integers within a specific range in Java?How to get an enum value from a string value in Java?'Must Override a Superclass Method' Errors after importing a project into EclipseHow to turn off the Eclipse code formatter for certain sections of Java code?How do I convert a String to an int in Java?
Linux tr to convert vertical text to horizontal
What happens to foam insulation board after you pour concrete slab?
What are the words for people who cause trouble believing they know better?
Word for a small burst of laughter that can't be held back
How certain is a caster of when their spell will end?
Convert camelCase and PascalCase to Title Case
What is a simple, physical situation where complex numbers emerge naturally?
Do adult Russians normally hand-write Cyrillic as cursive or as block letters?
What are the words for people who cause trouble believing they know better?
Why do guitarists wave their guitars?
Is there any word or phrase for negative bearing?
Did thousands of women die every year due to illegal abortions before Roe v. Wade?
Bent spoke design wheels — feasible?
Old black and white movie: glowing black rocks slowly turn you into stone upon touch
Explain Ant-Man's "not it" scene from Avengers: Endgame
How to connect an offset point symbol to its original position in QGIS?
PhD student with mental health issues and bad performance
The ring of global sections of a regular scheme
What is the right way to float a home lab?
Working in the USA for living expenses only; allowed on VWP?
Did Darth Vader wear the same suit for 20+ years?
Side by side histograms
Do manufacturers try make their components as close to ideal ones as possible?
Is the capacitor drawn or wired wrongly?
How to get the Bundle-SymbolicName from an IProject?
Does a finally block always get executed in Java?Create ArrayList from arrayHow do I call one constructor from another in Java?Fastest way to determine if an integer's square root is an integerHow do I read / convert an InputStream into a String in Java?How do I generate random integers within a specific range in Java?How to get an enum value from a string value in Java?'Must Override a Superclass Method' Errors after importing a project into EclipseHow to turn off the Eclipse code formatter for certain sections of Java code?How do I convert a String to an int in Java?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I'm writing a wizard for an eclipse project and want to include another plugin as Require-Bundle
in the Manifest.MF
.
I have the IProject
I want to include, can I access its Bundle-SymbolicName
without parsing the Manifest.MF
? Or are there other ways to avoid manual parsing?
java eclipse eclipse-plugin
add a comment |
I'm writing a wizard for an eclipse project and want to include another plugin as Require-Bundle
in the Manifest.MF
.
I have the IProject
I want to include, can I access its Bundle-SymbolicName
without parsing the Manifest.MF
? Or are there other ways to avoid manual parsing?
java eclipse eclipse-plugin
add a comment |
I'm writing a wizard for an eclipse project and want to include another plugin as Require-Bundle
in the Manifest.MF
.
I have the IProject
I want to include, can I access its Bundle-SymbolicName
without parsing the Manifest.MF
? Or are there other ways to avoid manual parsing?
java eclipse eclipse-plugin
I'm writing a wizard for an eclipse project and want to include another plugin as Require-Bundle
in the Manifest.MF
.
I have the IProject
I want to include, can I access its Bundle-SymbolicName
without parsing the Manifest.MF
? Or are there other ways to avoid manual parsing?
java eclipse eclipse-plugin
java eclipse eclipse-plugin
asked Mar 24 at 13:21
user3561614user3561614
3951314
3951314
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
An IProject
may not represent a plug-in and doesn't have any direct API to get a plug-in id.
You can use the normal Java Manifest
class to look at the MANIFEST.MF using something like:
IProject project = ...
IFile manifestResource = project.getFile(new Path("META-INF/MANIFEST.MF"));
if (manifestResource.exists())
try (InputStream stream = manifestResource.getContents())
Manifest manifest = new Manifest();
manifest.read(stream);
String symbolicName = manifest.getMainAttributes().getValue("Bundle-SymbolicName");
catch (CoreException
This code is adapted from code used by Eclipse PDE to look for the plug-in.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55324229%2fhow-to-get-the-bundle-symbolicname-from-an-iproject%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
An IProject
may not represent a plug-in and doesn't have any direct API to get a plug-in id.
You can use the normal Java Manifest
class to look at the MANIFEST.MF using something like:
IProject project = ...
IFile manifestResource = project.getFile(new Path("META-INF/MANIFEST.MF"));
if (manifestResource.exists())
try (InputStream stream = manifestResource.getContents())
Manifest manifest = new Manifest();
manifest.read(stream);
String symbolicName = manifest.getMainAttributes().getValue("Bundle-SymbolicName");
catch (CoreException
This code is adapted from code used by Eclipse PDE to look for the plug-in.
add a comment |
An IProject
may not represent a plug-in and doesn't have any direct API to get a plug-in id.
You can use the normal Java Manifest
class to look at the MANIFEST.MF using something like:
IProject project = ...
IFile manifestResource = project.getFile(new Path("META-INF/MANIFEST.MF"));
if (manifestResource.exists())
try (InputStream stream = manifestResource.getContents())
Manifest manifest = new Manifest();
manifest.read(stream);
String symbolicName = manifest.getMainAttributes().getValue("Bundle-SymbolicName");
catch (CoreException
This code is adapted from code used by Eclipse PDE to look for the plug-in.
add a comment |
An IProject
may not represent a plug-in and doesn't have any direct API to get a plug-in id.
You can use the normal Java Manifest
class to look at the MANIFEST.MF using something like:
IProject project = ...
IFile manifestResource = project.getFile(new Path("META-INF/MANIFEST.MF"));
if (manifestResource.exists())
try (InputStream stream = manifestResource.getContents())
Manifest manifest = new Manifest();
manifest.read(stream);
String symbolicName = manifest.getMainAttributes().getValue("Bundle-SymbolicName");
catch (CoreException
This code is adapted from code used by Eclipse PDE to look for the plug-in.
An IProject
may not represent a plug-in and doesn't have any direct API to get a plug-in id.
You can use the normal Java Manifest
class to look at the MANIFEST.MF using something like:
IProject project = ...
IFile manifestResource = project.getFile(new Path("META-INF/MANIFEST.MF"));
if (manifestResource.exists())
try (InputStream stream = manifestResource.getContents())
Manifest manifest = new Manifest();
manifest.read(stream);
String symbolicName = manifest.getMainAttributes().getValue("Bundle-SymbolicName");
catch (CoreException
This code is adapted from code used by Eclipse PDE to look for the plug-in.
answered Mar 24 at 15:36
greg-449greg-449
91.7k1668106
91.7k1668106
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55324229%2fhow-to-get-the-bundle-symbolicname-from-an-iproject%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown