Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/newparser/org/eclipse/cdt/internal/core/newparser/util/DeclarationSpecifier.java')
-rw-r--r--core/org.eclipse.cdt.core/newparser/org/eclipse/cdt/internal/core/newparser/util/DeclarationSpecifier.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/core/org.eclipse.cdt.core/newparser/org/eclipse/cdt/internal/core/newparser/util/DeclarationSpecifier.java b/core/org.eclipse.cdt.core/newparser/org/eclipse/cdt/internal/core/newparser/util/DeclarationSpecifier.java
new file mode 100644
index 00000000000..a7188fc17f6
--- /dev/null
+++ b/core/org.eclipse.cdt.core/newparser/org/eclipse/cdt/internal/core/newparser/util/DeclarationSpecifier.java
@@ -0,0 +1,25 @@
+package org.eclipse.cdt.internal.core.newparser.util;
+
+import java.util.List;
+
+/**
+ * @author jcamelon
+ *
+ * To change this generated comment edit the template variable "typecomment":
+ * Window>Preferences>Java>Templates.
+ * To enable and disable the creation of type comments go to
+ * Window>Preferences>Java>Code Generation.
+ */
+public class DeclarationSpecifier extends DeclSpecifier {
+
+ public interface Container {
+
+ public DeclarationSpecifier getDeclSpecifier();
+
+ public void setDeclSpecifier( DeclarationSpecifier in );
+
+ public void addDeclarator(Object declarator);
+ public List getDeclarators();
+
+ };
+}

Back to the top