Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Loskutov2018-03-11 09:23:45 +0000
committerAndrey Loskutov2018-03-11 09:23:45 +0000
commit8973c1a673c57262aca22ae32ef2929a90a4cbde (patch)
tree02b2a4c6731ab0dd42ae5c8abc433037af42fa33
parentad78d5d2c4f16c5c8ad78b50fae7762390c930b8 (diff)
downloadeclipse.pde.ui-8973c1a673c57262aca22ae32ef2929a90a4cbde.tar.gz
eclipse.pde.ui-8973c1a673c57262aca22ae32ef2929a90a4cbde.tar.xz
eclipse.pde.ui-8973c1a673c57262aca22ae32ef2929a90a4cbde.zip
Bug 531602 - added @since tags to fix API errorsI20180312-2000
Change-Id: Ia65c55f380fba3f1885816012022ace046e2f7c9 Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
-rw-r--r--ui/org.eclipse.pde.core/src/org/eclipse/pde/core/target/ITargetDefinition.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/ui/org.eclipse.pde.core/src/org/eclipse/pde/core/target/ITargetDefinition.java b/ui/org.eclipse.pde.core/src/org/eclipse/pde/core/target/ITargetDefinition.java
index 41fd8b4df7..4ac1cc991a 100644
--- a/ui/org.eclipse.pde.core/src/org/eclipse/pde/core/target/ITargetDefinition.java
+++ b/ui/org.eclipse.pde.core/src/org/eclipse/pde/core/target/ITargetDefinition.java
@@ -61,15 +61,17 @@ public interface ITargetDefinition {
* and set to null to avoid out of sync documents
*
* @param document
- * xml document or <code>null</code>
+ * xml document or <code>null</code>
+ * @since 3.12
*/
public void setDocument(Document document);
/**
* Returns the Document that represents this target, or <code>null</code> if
* none
- *
+ *
* @return document or <code>null</code>
+ * @since 3.12
*/
public Document getDocument();

Back to the top