Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.team.core/src/org/eclipse/team/core/mapping/IResourceDiff.java')
-rw-r--r--bundles/org.eclipse.team.core/src/org/eclipse/team/core/mapping/IResourceDiff.java28
1 files changed, 14 insertions, 14 deletions
diff --git a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/mapping/IResourceDiff.java b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/mapping/IResourceDiff.java
index 867456673..575c2dd7a 100644
--- a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/mapping/IResourceDiff.java
+++ b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/mapping/IResourceDiff.java
@@ -20,9 +20,9 @@ import org.eclipse.team.core.history.IFileRevision;
* A resource diff represents the changes between two resources. The diff can be
* used to describe the change between an ancestor and remote, an ancestor and
* local or between the local and a remote for two-way comparisons.
- *
+ *
* @see IDiffTree
- *
+ *
* @since 3.2
* @noimplement This interface is not intended to be implemented by clients.
* Clients that need to create deltas should instead use or
@@ -33,49 +33,49 @@ public interface IResourceDiff extends ITwoWayDiff {
/**
* Change constant (bit mask) indicating that the resource was opened or closed.
- * For example, if the current state of the resource is open then
+ * For example, if the current state of the resource is open then
* it was previously closed.
- *
+ *
* @see ITwoWayDiff#getFlags()
* @see org.eclipse.core.resources.IResourceDelta#OPEN
*/
public static final int OPEN = 0x10000;
-
+
/**
- * Change constant (bit mask) indicating that a project's description has changed.
- *
+ * Change constant (bit mask) indicating that a project's description has changed.
+ *
* @see ITwoWayDiff#getFlags()
* @see org.eclipse.core.resources.IResourceDelta#DESCRIPTION
*/
public static final int DESCRIPTION = 0x20000;
-
+
/**
* Return the local resource to which this diff applies.
* @return the local resource to which this diff applies
*/
public IResource getResource();
-
+
/**
* Return a handle to the file state representing the "before" state
* of the file used to calculate this diff. A <code>null</code> is
* returned if the resource is not a file or if the file does not exist in
* the before state. If a file state is returned, clients should still
- * check the {@link IFileState#exists()} method to see if the file
+ * check the {@link IFileState#exists()} method to see if the file
* existed in the before state.
- *
+ *
* @return a handle to the file state representing the "before" state
* used to calculate this diff
*/
public IFileRevision getBeforeState();
-
+
/**
* Return a handle to the file state representing the "after" state
* of the file used to calculate this diff. A <code>null</code> is
* returned if the resource is not a file or if the file does not exist in
* the after state. If a file state is returned, clients should still
- * check the {@link IFileState#exists()} method to see if the file
+ * check the {@link IFileState#exists()} method to see if the file
* existed in the after state.
- *
+ *
* @return a handle to the file state representing the "before" state
* used to calculate this diff
*/

Back to the top