blob: be06dfaef6e9874754424f53991b1816de930f44 [file] [log] [blame]
package org.eclipse.stem.ui.reports.views;
/*******************************************************************************
* Copyright (c) 2007 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
*******************************************************************************/
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.stem.core.model.Decorator;
import org.eclipse.stem.jobs.simulation.SimulationManager;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.ui.ISelectionListener;
import org.eclipse.ui.IWorkbenchPart;
import org.eclipse.ui.part.ViewPart;
/**
* This view contains BIRT output that plots values of variables in STEM
* simulations.
*/
public class AggregateTimeSeriesView extends ViewPart implements ISelectionListener {
/**
* The identifier of the Time Series View
*/
public static final String ID_AGGREGATE_VIEW = "org.eclipse.stem.ui.reports.views.AggregateTimeSeriesView"; //$NON-NLS-1$
@SuppressWarnings("unused")
//private List<Identifiable> selectedIdentifiables = null;
/**
* This is the decorator that has been selected by the combo box.
*/
protected Decorator selectedDecorator;
private ReportViewer reportViewer;
/**
* @see org.eclipse.ui.part.WorkbenchPart#createPartControl(org.eclipse.swt.widgets.Composite)
*/
@Override
public void createPartControl(final Composite parent) {
reportViewer = new ReportViewer(parent, AggregateSeriesFactory.INSTANCE);
reportViewer.setInput(SimulationManager.getManager());
getSite().setSelectionProvider(reportViewer);
// Register with the SelectionService
getSite().getWorkbenchWindow().getSelectionService()
.addSelectionListener(this);
} // createPartControl
/**
* This method is called whenever ANYTHING is selected in the Eclipse
* workbench. It's job is to filter out selections of ISimulation instances
* and update the chart in the TimeSeriesCanvas
*
* @see org.eclipse.ui.ISelectionListener#selectionChanged(org.eclipse.ui.IWorkbenchPart,
* org.eclipse.jface.viewers.ISelection)
*/
@SuppressWarnings("unchecked")
public void selectionChanged(@SuppressWarnings("unused") final IWorkbenchPart part,
@SuppressWarnings("unused") final ISelection selection) {
// Nothing
} // selectionChanged
/**
* @see org.eclipse.ui.part.WorkbenchPart#dispose()
*/
@Override
public void dispose() {
getSite().getWorkbenchWindow().getSelectionService()
.removeSelectionListener(this);
} // dispose
/**
* This is required by the interface, but we're not using it.
*
* @see org.eclipse.ui.part.WorkbenchPart#setFocus()
*/
@Override
public void setFocus() {
// Nothing
} // setFocus
} // TimeSeriesView