blob: ce75569787dc8219abaa7e0a96ea0b0adf240767 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 Ericsson
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/
package org.eclipse.tracecompass.incubator.analysis.core.aspects;
import org.eclipse.tracecompass.incubator.internal.analysis.core.aspects.Messages;
import org.eclipse.tracecompass.tmf.core.event.aspect.ITmfEventAspect;
/**
* Process name aspect, determines the name of a process from an event.
*
* @author Matthew Khouzam
*/
public abstract class ProcessNameAspect implements ITmfEventAspect<String> {
@Override
public String getName() {
return String.valueOf(Messages.ProcessNameAspect_name);
}
@Override
public String getHelpText() {
return String.valueOf(Messages.ProcessNameAspect_description);
}
}