Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.display.view.web/src/org/eclipse/osee/display/view/web/search/OseeSearchResultsView.java')
-rw-r--r--plugins/org.eclipse.osee.display.view.web/src/org/eclipse/osee/display/view/web/search/OseeSearchResultsView.java47
1 files changed, 0 insertions, 47 deletions
diff --git a/plugins/org.eclipse.osee.display.view.web/src/org/eclipse/osee/display/view/web/search/OseeSearchResultsView.java b/plugins/org.eclipse.osee.display.view.web/src/org/eclipse/osee/display/view/web/search/OseeSearchResultsView.java
deleted file mode 100644
index 2719659d3f0..00000000000
--- a/plugins/org.eclipse.osee.display.view.web/src/org/eclipse/osee/display/view/web/search/OseeSearchResultsView.java
+++ /dev/null
@@ -1,47 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2011 Boeing.
- * 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:
- * Boeing - initial API and implementation
- *******************************************************************************/
-package org.eclipse.osee.display.view.web.search;
-
-import org.eclipse.osee.display.view.web.AbstractCommonView;
-import org.eclipse.osee.display.view.web.components.OseeLeftMarginContainer;
-import org.eclipse.osee.display.view.web.components.OseeSearchResultsListComponent;
-import org.eclipse.osee.vaadin.widgets.HasViewTitle;
-
-/**
- * @author Shawn F. Cook
- */
-@SuppressWarnings("serial")
-public abstract class OseeSearchResultsView extends AbstractCommonView {
-
- protected OseeSearchResultsListComponent searchResultsListComponent = new OseeSearchResultsListComponent();
-
- @Override
- protected void createLayout() {
- OseeLeftMarginContainer leftMargContainer = new OseeLeftMarginContainer();
- leftMargContainer.setSizeFull();
- searchResultsListComponent.setSizeFull();
-
- leftMargContainer.addComponent(searchResultsListComponent);
- addComponent(leftMargContainer);
-
- leftMargContainer.setExpandRatio(searchResultsListComponent, 1.0f);
- setExpandRatio(leftMargContainer, 1.0f);
- }
-
- @Override
- public String getViewTitle() {
- if (searchHeader != null && searchHeader instanceof HasViewTitle) {
- return ((HasViewTitle) searchHeader).getViewTitle();
- } else {
- return "";
- }
- }
-}

Back to the top