Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2006-01-30 15:57:22 +0000
committerMichael Valenta2006-01-30 15:57:22 +0000
commit8cd1eb9ed6304f01854453e5eafbbb97bb546330 (patch)
tree284af1ebc02fd5c4f5d06acdca6e9b7ef70fab8f /bundles/org.eclipse.team.core/src/org/eclipse/team/core/subscribers
parent2613f43a2bc0f867032ee430fd7f3afb418b5a30 (diff)
downloadeclipse.platform.team-8cd1eb9ed6304f01854453e5eafbbb97bb546330.tar.gz
eclipse.platform.team-8cd1eb9ed6304f01854453e5eafbbb97bb546330.tar.xz
eclipse.platform.team-8cd1eb9ed6304f01854453e5eafbbb97bb546330.zip
Renamed IDiffNode to IDiff
Diffstat (limited to 'bundles/org.eclipse.team.core/src/org/eclipse/team/core/subscribers')
-rw-r--r--bundles/org.eclipse.team.core/src/org/eclipse/team/core/subscribers/Subscriber.java24
1 files changed, 12 insertions, 12 deletions
diff --git a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/subscribers/Subscriber.java b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/subscribers/Subscriber.java
index 938924d0e..1611b394e 100644
--- a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/subscribers/Subscriber.java
+++ b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/subscribers/Subscriber.java
@@ -337,7 +337,7 @@ abstract public class Subscriber {
}
/**
- * Returns synchronization info, in the form of an {@link IDiffNode} for the
+ * Returns synchronization info, in the form of an {@link IDiff} for the
* given resource, or <code>null</code> if there is no synchronization
* info because the subscriber does not apply to this resource or the resource
* is in-sync.
@@ -361,7 +361,7 @@ abstract public class Subscriber {
* @throws TeamException if errors occur
* @since 3.2
*/
- public IDiffNode getDiff(IResource resource) throws CoreException {
+ public IDiff getDiff(IResource resource) throws CoreException {
SyncInfo info = getSyncInfo(resource);
if (info == null || info.getKind() == SyncInfo.IN_SYNC)
return null;
@@ -419,8 +419,8 @@ abstract public class Subscriber {
}
private void accept(IResource resource, int depth, IDiffVisitor visitor) throws CoreException {
- IDiffNode node = getDiff(resource);
- if (node != null && node.getKind() != IDiffNode.NO_CHANGE) {
+ IDiff node = getDiff(resource);
+ if (node != null && node.getKind() != IDiff.NO_CHANGE) {
if (!visitor.visit(node))
return;
}
@@ -466,16 +466,16 @@ abstract public class Subscriber {
* the provided stateMask. The synchronization state flags that are
* guaranteed to be interpreted by this method are:
* <ul>
- * <li>The kind flags {@link IDiffNode#ADD}, {@link IDiffNode#REMOVE} and {@link IDiffNode#CHANGE}.
+ * <li>The kind flags {@link IDiff#ADD}, {@link IDiff#REMOVE} and {@link IDiff#CHANGE}.
* If none of these flags are included then all are assumed.
* <li>The direction flags {@link IThreeWayDiff#INCOMING} and {@link IThreeWayDiff#OUTGOING} if the
* subscriber is a three-way subscriber. If neither are provided, both are assumed.
* </ul>
* Other flags can be included and may or may not be interpreted by the subscriber.
* <p>
- * An element will only include {@link IDiffNode#ADD} in the returned state if all resources covered
- * by the traversals mappings are added. Similarly, {@link IDiffNode#REMOVE} will only be included
- * if all the resources covered by the tarversals are deleted. Otherwise {@link IDiffNode#CHANGE}
+ * An element will only include {@link IDiff#ADD} in the returned state if all resources covered
+ * by the traversals mappings are added. Similarly, {@link IDiff#REMOVE} will only be included
+ * if all the resources covered by the tarversals are deleted. Otherwise {@link IDiff#CHANGE}
* will be returned.
*
* @param mapping the resource mapping whose synchronization state is to be determined
@@ -484,7 +484,7 @@ abstract public class Subscriber {
* @return the synchronization state of the given resource mapping
* @throws CoreException
* @since 3.2
- * @see IDiffNode
+ * @see IDiff
* @see IThreeWayDiff
*/
public int getState(ResourceMapping mapping, int stateMask, IProgressMonitor monitor) throws CoreException {
@@ -492,7 +492,7 @@ abstract public class Subscriber {
final int[] direction = new int[] { 0 };
final int[] kind = new int[] { 0 };
accept(traversals, new IDiffVisitor() {
- public boolean visit(IDiffNode diff) throws CoreException {
+ public boolean visit(IDiff diff) throws CoreException {
if (diff instanceof IThreeWayDiff) {
IThreeWayDiff twd = (IThreeWayDiff) diff;
direction[0] |= twd.getDirection();
@@ -502,10 +502,10 @@ abstract public class Subscriber {
if (kind[0] == 0)
kind[0] = diffKind;
if (kind[0] != diffKind) {
- kind[0] = IDiffNode.CHANGE;
+ kind[0] = IDiff.CHANGE;
}
// Only need to visit the childen of a change
- return diffKind == IDiffNode.CHANGE;
+ return diffKind == IDiff.CHANGE;
}
});
return (direction[0] | kind[0]) & stateMask;

Back to the top