Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.search/new search/org/eclipse/search2/internal/ui/basic/views/SetLayoutAction.java')
-rw-r--r--org.eclipse.search/new search/org/eclipse/search2/internal/ui/basic/views/SetLayoutAction.java36
1 files changed, 0 insertions, 36 deletions
diff --git a/org.eclipse.search/new search/org/eclipse/search2/internal/ui/basic/views/SetLayoutAction.java b/org.eclipse.search/new search/org/eclipse/search2/internal/ui/basic/views/SetLayoutAction.java
deleted file mode 100644
index 123c9a9eee3..00000000000
--- a/org.eclipse.search/new search/org/eclipse/search2/internal/ui/basic/views/SetLayoutAction.java
+++ /dev/null
@@ -1,36 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2003 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.search2.internal.ui.basic.views;
-
-import org.eclipse.jface.action.Action;
-import org.eclipse.jface.action.IAction;
-import org.eclipse.search.ui.text.AbstractTextSearchViewPage;
-
-public class SetLayoutAction extends Action {
-
- private AbstractTextSearchViewPage fPage;
- private int fLayout;
-
- public SetLayoutAction(AbstractTextSearchViewPage page, String label, String tooltip, int layout) {
- super(label, IAction.AS_CHECK_BOX);
- fPage= page;
- setToolTipText(tooltip); //$NON-NLS-1$
- fLayout= layout;
- }
-
- public void run() {
- fPage.setLayout(fLayout);
- }
-
- public int getLayout() {
- return fLayout;
- }
-}

Back to the top