Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/DefaultSearchHandler.java')
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/DefaultSearchHandler.java84
1 files changed, 42 insertions, 42 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/DefaultSearchHandler.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/DefaultSearchHandler.java
index 2b0b6bc21..38e67b3b1 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/DefaultSearchHandler.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/DefaultSearchHandler.java
@@ -1,42 +1,42 @@
-/*******************************************************************************
- * Copyright (c) 2011 Tasktop Technologies 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:
- * Tasktop Technologies - initial API and implementation
- *******************************************************************************/
-
-package org.eclipse.mylyn.internal.tasks.ui.search;
-
-import org.eclipse.mylyn.internal.provisional.commons.ui.SubstringPatternFilter;
-import org.eclipse.swt.widgets.Composite;
-import org.eclipse.ui.dialogs.PatternFilter;
-
-/**
- * The default implementation of a search handler
- *
- * @author David Green
- * @see SubstringPatternFilter
- */
-public class DefaultSearchHandler extends AbstractSearchHandler {
-
- @Override
- public PatternFilter createFilter() {
- return new SubstringPatternFilter();
- }
-
- @Override
- public Composite createSearchComposite(Composite container) {
- // no additional controls
- return null;
- }
-
- @Override
- public void dispose() {
- // nothing to do
- }
-
-}
+/*******************************************************************************
+ * Copyright (c) 2011 Tasktop Technologies 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:
+ * Tasktop Technologies - initial API and implementation
+ *******************************************************************************/
+
+package org.eclipse.mylyn.internal.tasks.ui.search;
+
+import org.eclipse.mylyn.internal.provisional.commons.ui.SubstringPatternFilter;
+import org.eclipse.swt.widgets.Composite;
+import org.eclipse.ui.dialogs.PatternFilter;
+
+/**
+ * The default implementation of a search handler
+ *
+ * @author David Green
+ * @see SubstringPatternFilter
+ */
+public class DefaultSearchHandler extends AbstractSearchHandler {
+
+ @Override
+ public PatternFilter createFilter() {
+ return new SubstringPatternFilter();
+ }
+
+ @Override
+ public Composite createSearchComposite(Composite container) {
+ // no additional controls
+ return null;
+ }
+
+ @Override
+ public void dispose() {
+ // nothing to do
+ }
+
+}

Back to the top