blob: b7d763503278a896cced2f40562eec537ec578fd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2019 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.tmf.core.event.aspect;
import java.util.List;
import java.util.Objects;
import org.eclipse.tracecompass.internal.tmf.core.aspect.Messages;
import org.eclipse.tracecompass.tmf.core.event.lookup.ITmfCallsite;
/**
* This aspect finds the call sites of the code that are running when the event
* occurred.
*
* @author Matthew Khouzam
* @since 5.1
*/
public abstract class TmfCallsiteAspect implements ITmfEventAspect<List<ITmfCallsite>> {
@Override
public final String getName() {
return Objects.requireNonNull(Messages.TmfCallsiteAspect_name);
}
@Override
public final String getHelpText() {
return Objects.requireNonNull(Messages.TmfCallsiteAspect_description);
}
}