Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[pde-build-dev] Re: pde-build-dev Digest, Vol 6, Issue 4

Dear Peter

Here is the plugin.xml, the true is that I'm new using eclipse and I don't really know what I have to write in the plugin.xml and this is almost the same .xml from the Hello word example. Maybe that´s the reason I can not find de others files that my application need .

Thanks.




2005/10/24, pde-build-dev-request@xxxxxxxxxxx <pde-build-dev-request@xxxxxxxxxxx >:
Send pde-build-dev mailing list submissions to
         pde-build-dev@xxxxxxxxxxx

To subscribe or unsubscribe via the World Wide Web, visit
        https://dev.eclipse.org/mailman/listinfo/pde-build-dev
or, via email, send a message with subject or body 'help' to
        pde-build-dev-request@xxxxxxxxxxx

You can reach the person managing the list at
        pde-build-dev-owner@xxxxxxxxxxx

When replying, please edit your Subject line so it is more specific
than "Re: Contents of pde-build-dev digest..."


Today's Topics:

   1. Re: How can I convert a swing application to      an      eclipse
      plugin? (Peter Rader)


----------------------------------------------------------------------

Message: 1
Date: Mon, 24 Oct 2005 09:34:44 +0200
From: Peter Rader < p.rader@xxxxxxxxxxxx>
Subject: Re: [pde-build-dev] How can I convert a swing application to
        an      eclipse plugin?
To: "Eclipse PDE Build developers list." < pde-build-dev@xxxxxxxxxxx>
Message-ID:
        <OF655857C1.EDB87CA3-ONC12570A4.0029A1BF-C12570A4.0029A1D1@xxxxxxxxxxxx >

Content-Type: text/plain; charset=ISO-8859-1






Hello Gleidy,

can you send us the plugin.xml file?
Also we need to know the names of the files eclipse cant find.

Your Englich is ok. :-)

To pack your plugin (into jar/zip) select the "plugin.xml"
and goto tab "Overview" take a view on "Exporting".
Using the "Export Wizard" you shoud be able to export your plugin.

Mit freundlichen Grüßen
---------------------------------------------
Peter Rader
Auszubildender Fachinformatiker Anwendungsentwicklung

NEW VOICE GmbH
An der großen Wisch 2
26133 Oldenburg

FON: +49 (0)441 8001-426
FAX: +49 (0)441 8001-111
WEB: www.new-voice.de
MAIL: p.rader@xxxxxxxxxxxx

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - -
Besuchen Sie uns auf der CRM-expo in Nürnberg:
9. + 10. Oktober 2005, Stand A 58!
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - -



------------------------------

_______________________________________________
pde-build-dev mailing list
pde-build-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/pde-build-dev


End of pde-build-dev Digest, Vol 6, Issue 4
*******************************************

<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>
   <extension
         point="org.eclipse.ui.actionSets">
      <actionSet
            id="SQLFront.actionSet"
            label="Sample Action Set"
            visible="true">
         <menu
               id="sampleMenu"
               label="SQLFront">
            <separator name="sampleGroup"/>
         </menu>
         <action
               class="sqlfront.actions.SQLFrontAction"
               icon="icon/sample.gif"
               id="sqlfront.actions.SQLFrontAction"
               label="Abrir SQLFront"
               menubarPath="sampleMenu/sampleGroup"
               toolbarPath="sampleGroup"/>
      </actionSet>
   </extension>

</plugin>

Back to the top