X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=analysis%2Forg.eclipse.tracecompass.analysis.os.linux.ui%2Fsrc%2Forg%2Feclipse%2Ftracecompass%2Finternal%2Fanalysis%2Fos%2Flinux%2Fui%2Fviews%2Flatency%2FSystemCallLatencyView.java;fp=analysis%2Forg.eclipse.tracecompass.analysis.os.linux.ui%2Fsrc%2Forg%2Feclipse%2Ftracecompass%2Finternal%2Fanalysis%2Fos%2Flinux%2Fui%2Fviews%2Flatency%2FSystemCallLatencyView.java;h=0000000000000000000000000000000000000000;hb=43439230e2184842a9d75552a2e944beb181c267;hp=22b1d8b7f65b90271607d48d6b2dfc79ba3108b9;hpb=101bcc6537f5cca823925bd159fa704892dced58;p=deliverable%2Ftracecompass.git diff --git a/analysis/org.eclipse.tracecompass.analysis.os.linux.ui/src/org/eclipse/tracecompass/internal/analysis/os/linux/ui/views/latency/SystemCallLatencyView.java b/analysis/org.eclipse.tracecompass.analysis.os.linux.ui/src/org/eclipse/tracecompass/internal/analysis/os/linux/ui/views/latency/SystemCallLatencyView.java deleted file mode 100644 index 22b1d8b7f6..0000000000 --- a/analysis/org.eclipse.tracecompass.analysis.os.linux.ui/src/org/eclipse/tracecompass/internal/analysis/os/linux/ui/views/latency/SystemCallLatencyView.java +++ /dev/null @@ -1,41 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2015, 2016 Ericsson - * - * 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: - * France Lapointe Nguyen - Initial API and implementation - *******************************************************************************/ - -package org.eclipse.tracecompass.internal.analysis.os.linux.ui.views.latency; - -import org.eclipse.jface.viewers.TableViewer; -import org.eclipse.tracecompass.analysis.timing.ui.views.segmentstore.table.AbstractSegmentStoreTableView; -import org.eclipse.tracecompass.analysis.timing.ui.views.segmentstore.table.AbstractSegmentStoreTableViewer; - -/** - * View for the latency analysis - * - * @author France Lapointe Nguyen - */ -public class SystemCallLatencyView extends AbstractSegmentStoreTableView { - - // ------------------------------------------------------------------------ - // Attributes - // ------------------------------------------------------------------------ - - /** The view's ID */ - public static final String ID = "org.eclipse.tracecompass.analysis.os.linux.views.latency"; //$NON-NLS-1$ - - // ------------------------------------------------------------------------ - // Constructor - // ------------------------------------------------------------------------ - - @Override - protected AbstractSegmentStoreTableViewer createSegmentStoreViewer(TableViewer tableViewer) { - return new SystemCallLatencyTableViewer(tableViewer); - } -}