blob: e1365d42b017d95fb8da9f7e69ba865beef6e52f [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2016 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
*
* Contributors:
* Bruno Roy - Initial API and implementation
**********************************************************************/
package org.eclipse.tracecompass.internal.lttng2.control.ui.views.dialogs;
import java.util.List;
import org.eclipse.tracecompass.internal.lttng2.control.core.model.ITraceLogLevel;
import org.eclipse.tracecompass.internal.lttng2.control.core.model.LogLevelType;
/**
* Interface for providing base information about UST events to be enabled.
*
* @author Bruno Roy
*/
public interface IBaseEnableUstEvents {
// ------------------------------------------------------------------------
// Accessors
// ------------------------------------------------------------------------
/**
* @return a flag whether events using log levels should be enabled
*/
boolean isLogLevel();
/**
* @return a log level type (loglevel or loglevel-only)
*/
LogLevelType getLogLevelType();
/**
* @return a log level
*/
ITraceLogLevel getLogLevel();
/**
* @return a flag indicating whether all tracepoints shall be enabled or not.
*/
boolean isAllTracePoints();
/**
* @return a list of logger names to be enabled.
*/
List<String> getEventNames();
}