Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IQualifierType.java')
-rw-r--r--core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IQualifierType.java30
1 files changed, 15 insertions, 15 deletions
diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IQualifierType.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IQualifierType.java
index 466217c6763..64b820697d0 100644
--- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IQualifierType.java
+++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IQualifierType.java
@@ -16,23 +16,23 @@ package org.eclipse.cdt.core.dom.ast;
/**
* Interface used to qualify types.
- *
+ *
* @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface IQualifierType extends IType {
- /**
- * Returns whether this is a const type
- */
- public boolean isConst();
-
- /**
- * Returns whether this is a volatile type
- */
- public boolean isVolatile();
-
- /**
- * Returns the type that this is qualifying
- */
- public IType getType();
+ /**
+ * Returns whether this is a const type
+ */
+ public boolean isConst();
+
+ /**
+ * Returns whether this is a volatile type
+ */
+ public boolean isVolatile();
+
+ /**
+ * Returns the type that this is qualifying
+ */
+ public IType getType();
}

Back to the top