blob: 2868fa59e506df7836ecfa3e1a2bb4587db6965b [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2018 Ericsson, École Polytechnique de Montréal
*
* 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
**********************************************************************/
package org.eclipse.tracecompass.incubator.internal.ros.ui.views.tasks;
import org.eclipse.tracecompass.incubator.internal.ros.core.analysis.tasks.RosTasksDataProvider;
import org.eclipse.tracecompass.incubator.internal.ros.ui.views.AbstractRosView;
/**
* View for ROS Tasks
*
* @author Christophe Bedard
*/
public class RosTasksView extends AbstractRosView {
/** View ID suffix */
public static final String ID_SUFFIX = "tasks"; //$NON-NLS-1$
/**
* Constructor
*/
public RosTasksView() {
super(ID_SUFFIX, new RosTasksPresentationProvider(), RosTasksDataProvider.getFullDataProviderId());
}
/**
* @return the full view ID for this view
*/
public static String getFullViewId() {
return AbstractRosView.ID_PREFIX + ID_SUFFIX;
}
}