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;








0















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?










share|improve this question




























    0















    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?










    share|improve this question
























      0












      0








      0








      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?










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 24 at 13:21









      user3561614user3561614

      3951314




      3951314






















          1 Answer
          1






          active

          oldest

          votes


















          1














          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.






          share|improve this answer























            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
            );



            );













            draft saved

            draft discarded


















            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









            1














            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.






            share|improve this answer



























              1














              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.






              share|improve this answer

























                1












                1








                1







                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.






                share|improve this answer













                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.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 24 at 15:36









                greg-449greg-449

                91.7k1668106




                91.7k1668106





























                    draft saved

                    draft discarded
















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript