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/SearchResultSortAction.java')
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/SearchResultSortAction.java59
1 files changed, 0 insertions, 59 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/SearchResultSortAction.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/SearchResultSortAction.java
deleted file mode 100644
index f63e7c75d..000000000
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/search/SearchResultSortAction.java
+++ /dev/null
@@ -1,59 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2004, 2008 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.jface.action.Action;
-
-/**
- * This class sorts search results by a supplied category.
- *
- * @author Rob Elves (moved to tasks.ui)
- */
-public class SearchResultSortAction extends Action {
-
- /** The category that this class sorts Bugzilla search results by. */
- private final int bugSortOrder;
-
- /** The view where the Bugzilla search results are displayed. */
- private final RepositorySearchResultView bugPage;
-
- /**
- * Constructor
- *
- * @param label
- * The string used as the text for the action, or null if there is no text
- * @param page
- * The view where the Bugzilla search results are displayed.
- * @param sortOrder
- * The category that this class sorts Bugzilla search results by
- */
- public SearchResultSortAction(String label, RepositorySearchResultView page, int sortOrder) {
- super(label);
- bugPage = page;
- bugSortOrder = sortOrder;
- }
-
- /**
- * Reorder the Bugzilla search results.
- */
- @Override
- public void run() {
- bugPage.setSortOrder(bugSortOrder);
- }
-
- /**
- * Returns the category that this class sorts Bugzilla search results by.
- */
- public int getSortOrder() {
- return bugSortOrder;
- }
-}

Back to the top