Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.compare.core/src/org/eclipse/compare/patch/IHunkFilter.java')
-rw-r--r--bundles/org.eclipse.compare.core/src/org/eclipse/compare/patch/IHunkFilter.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/bundles/org.eclipse.compare.core/src/org/eclipse/compare/patch/IHunkFilter.java b/bundles/org.eclipse.compare.core/src/org/eclipse/compare/patch/IHunkFilter.java
new file mode 100644
index 000000000..c32079fc6
--- /dev/null
+++ b/bundles/org.eclipse.compare.core/src/org/eclipse/compare/patch/IHunkFilter.java
@@ -0,0 +1,29 @@
+/*******************************************************************************
+ * Copyright (c) 2008, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.compare.patch;
+
+/**
+ * Filter that is used to determine if a hunk should be applied or not
+ *
+ * @since org.eclipse.compare.core 3.5
+ */
+public interface IHunkFilter {
+
+ /**
+ * Returns true if the given hunk should be applied
+ *
+ * @param hunk
+ * the hunk
+ * @return true if the given hunk should be applied
+ */
+ public boolean select(IHunk hunk);
+
+} \ No newline at end of file

Back to the top