Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/SimpleDelta.java')
-rw-r--r--org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/SimpleDelta.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/SimpleDelta.java b/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/SimpleDelta.java
index 53650d7eef..002ca5b5ac 100644
--- a/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/SimpleDelta.java
+++ b/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/SimpleDelta.java
@@ -21,19 +21,19 @@ public class SimpleDelta {
* @see IJavaElementDelta#getKind()
*/
protected int kind = 0;
-
+
/*
* @see IJavaElementDelta#getFlags()
*/
protected int changeFlags = 0;
-
+
/*
* Marks this delta as added
*/
public void added() {
this.kind = IJavaElementDelta.ADDED;
}
-
+
/*
* Marks this delta as changed with the given change flag
*/
@@ -41,14 +41,14 @@ public class SimpleDelta {
this.kind = IJavaElementDelta.CHANGED;
this.changeFlags |= flags;
}
-
+
/*
* @see IJavaElementDelta#getFlags()
*/
public int getFlags() {
return this.changeFlags;
}
-
+
/*
* @see IJavaElementDelta#getKind()
*/
@@ -70,7 +70,7 @@ public class SimpleDelta {
this.kind = IJavaElementDelta.REMOVED;
this.changeFlags = 0;
}
-
+
/*
* Mark this delta has a having a super type change
*/

Back to the top