Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcletavernie2011-10-14 09:11:31 +0000
committercletavernie2011-10-14 09:11:31 +0000
commit00844c2513884a78fe4823508274e8064ee8511e (patch)
treee7d35bd39fec1420ceb91d7e2a34a7791b12232c
parent2fb67b424ff1b8f33c1ca175d92b2f26246ee371 (diff)
downloadorg.eclipse.papyrus-00844c2513884a78fe4823508274e8064ee8511e.tar.gz
org.eclipse.papyrus-00844c2513884a78fe4823508274e8064ee8511e.tar.xz
org.eclipse.papyrus-00844c2513884a78fe4823508274e8064ee8511e.zip
351695: Create a new plugin to edit project files
https://bugs.eclipse.org/bugs/show_bug.cgi?id=351695
-rw-r--r--sandbox/org.eclipse.papyrus.eclipse.project.editors/src/org/eclipse/papyrus/eclipse/project/editors/interfaces/IPluginProjectEditor.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/sandbox/org.eclipse.papyrus.eclipse.project.editors/src/org/eclipse/papyrus/eclipse/project/editors/interfaces/IPluginProjectEditor.java b/sandbox/org.eclipse.papyrus.eclipse.project.editors/src/org/eclipse/papyrus/eclipse/project/editors/interfaces/IPluginProjectEditor.java
index cd8f81bcf7c..2be90cf2c13 100644
--- a/sandbox/org.eclipse.papyrus.eclipse.project.editors/src/org/eclipse/papyrus/eclipse/project/editors/interfaces/IPluginProjectEditor.java
+++ b/sandbox/org.eclipse.papyrus.eclipse.project.editors/src/org/eclipse/papyrus/eclipse/project/editors/interfaces/IPluginProjectEditor.java
@@ -15,6 +15,7 @@ package org.eclipse.papyrus.eclipse.project.editors.interfaces;
import java.util.List;
+import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
@@ -51,4 +52,7 @@ public interface IPluginProjectEditor extends IProjectEditor, IFileEditor {
/** the method to add a child to an element */
public Element addChild(final Element element, final String childName);
+
+ /** the method to retrieve the plugin.xml XML Document associated to this project */
+ public Document getDocument();
}

Back to the top