Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.help/Eclipse Help/org/eclipse/help/internal/contributors/ActionContributor.java')
-rw-r--r--org.eclipse.help/Eclipse Help/org/eclipse/help/internal/contributors/ActionContributor.java28
1 files changed, 28 insertions, 0 deletions
diff --git a/org.eclipse.help/Eclipse Help/org/eclipse/help/internal/contributors/ActionContributor.java b/org.eclipse.help/Eclipse Help/org/eclipse/help/internal/contributors/ActionContributor.java
new file mode 100644
index 000000000..1d9969f76
--- /dev/null
+++ b/org.eclipse.help/Eclipse Help/org/eclipse/help/internal/contributors/ActionContributor.java
@@ -0,0 +1,28 @@
+package org.eclipse.help.internal.contributors;
+
+/*
+ * Licensed Materials - Property of IBM,
+ * WebSphere Studio Workbench
+ * (c) Copyright IBM Corp 2000
+ */
+
+import java.lang.*;
+
+/**
+ * Map (contexts) contributor
+ */
+public interface ActionContributor extends Contributor {
+ public static final String ACTIONS_ELEM = "actions";
+ public static final String ACTIONS_NAME_ATTR = NAME_ATTR;
+ public static final String ACTIONS_VIEW_ATTR = "infoview";
+ public static final String ACTIONS_STANDALONE_ATTR = "standalone";
+ public static final String INSERT_AS_ATTR = "as";
+ public static final String INSERT_AS_CHILD = "child";
+ public static final String INSERT_AS_FIRST_CHILD = "first-child";
+ public static final String INSERT_AS_LAST_CHILD = "last-child";
+ public static final String INSERT_AS_NEXT_SIB = "next-sib";
+ public static final String INSERT_AS_PREV_SIB = "prev-sib";
+ public static final String INSERT_ELEM = "insert";
+ public static final String INSERT_FROM_ATTR = "from";
+ public static final String INSERT_TO_ATTR = "to";
+}

Back to the top