Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.help/Eclipse Help/org/eclipse/help/internal/contributions/TopicRef.java')
-rw-r--r--org.eclipse.help/Eclipse Help/org/eclipse/help/internal/contributions/TopicRef.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/org.eclipse.help/Eclipse Help/org/eclipse/help/internal/contributions/TopicRef.java b/org.eclipse.help/Eclipse Help/org/eclipse/help/internal/contributions/TopicRef.java
new file mode 100644
index 000000000..febbdf0a0
--- /dev/null
+++ b/org.eclipse.help/Eclipse Help/org/eclipse/help/internal/contributions/TopicRef.java
@@ -0,0 +1,16 @@
+package org.eclipse.help.internal.contributions;
+
+/*
+ * Licensed Materials - Property of IBM,
+ * WebSphere Studio Workbench
+ * (c) Copyright IBM Corp 2000
+ */
+
+import java.lang.*;
+
+/**
+ * Topic reference contribution
+ */
+public interface TopicRef extends Topic {
+ public Topic getTopic();
+}

Back to the top