Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [pde-dev] Recreating plugin.xml editor form

Thanks for your answer, that seemed to work for most of the errors. (I thought I had tried that.)

I have two more import statements with errors:

import org.eclipse.pde.internal.core.text.IDocumentAttribute;

import org.eclipse.pde.internal.core.text.IDocumentNode;

 

Any ideas for this one?

 

Thanks,

Philippe

From: pde-dev-bounces@xxxxxxxxxxx [mailto:pde-dev-bounces@xxxxxxxxxxx] On Behalf Of Brian Bauman
Sent: Tuesday, March 18, 2008 1:21 PM
To: Eclipse PDE general developers list.
Cc: Eclipse PDE general developers list.; pde-dev-bounces@xxxxxxxxxxx
Subject: RE: [pde-dev] Recreating plugin.xml editor form

 


To resolve that PDE package, you can add an Import-Package statement for 'org.eclipse.pde.internal.ui' or add a Require-Bundle entry for 'org.eclipse.pde.ui' in your bundles Manifest file.

Brian Bauman
    IBM Software Group - Austin, TX
    Eclipse Committer
    baumanbr@xxxxxxxxxx
    (512) 838 -2938 (T/L 678-2938)


From:

Philippe Sabourin <Philippe.Sabourin@xxxxxxx>

To:

"Eclipse PDE general developers list." <pde-dev@xxxxxxxxxxx>

Date:

03/18/2008 07:34 AM

Subject:

RE: [pde-dev] Recreating plugin.xml editor form

 





Is there any way to resolve this import?
org.eclipse.pde.internal.ui
 
I tried copying the ManifestEditor and related files to my project so I could work from ther but I can't get it to resolve this package, even if I copy the manifest file directly from the jar file.
 
Philippe
 
From: pde-dev-bounces@xxxxxxxxxxx [mailto:pde-dev-bounces@xxxxxxxxxxx] On Behalf Of Chris Aniszczyk
Sent:
Thursday, March 13, 2008 5:26 PM
To:
Eclipse PDE general developers list.
Subject:
Re: [pde-dev] Recreating plugin.xml editor form

 

The manifest editor in PDE is quite complicated, here is the reference:

       org.eclipse.pde.internal.ui.editor.plugin.ManifestEditor


The editor is just based on Eclipse Forms, you can look here at how to use Forms:

       
http://www.eclipse.org/articles/Article-Forms/article.html
       
http://www.eclipse.org/articles/article.php?file=Article-Forms33/index.html
       
http://www.ibm.com/developerworks/opensource/library/os-eclipse-forms/

Cheers,


---
Chris Aniszczyk | IBM Lotus | Eclipse Committer |
http://mea-bloga.blogspot.com | +1.860.839.2465

From:

Philippe Sabourin <Philippe.Sabourin@xxxxxxx>

To:

"pde-dev@xxxxxxxxxxx" <pde-dev@xxxxxxxxxxx>

Date:

03/13/2008 04:03 PM

Subject:

[pde-dev] Recreating plugin.xml editor form


 

 






Hey All,

I am looking for a way to create a custom .xml editor that would work like the plugin.xml form editor. It needs just the GUI form editor and the source. I have figured out how to make the source version and have a form, but I was wondering if there was an easy way to connect the two. Where would I find the source for the plugin.xml editor? That would help tremendously.

Thanks,
Philippe Sabourin

_______________________________________________
pde-dev mailing list
pde-dev@xxxxxxxxxxx

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


Back to the top