blob: b7b48ce1948e20f9cb901ff917454472e53e8fb4 [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 org.eclipse.tracecompass.internal.lttng2.control.core.model.ITraceLogLevel;
import org.eclipse.tracecompass.internal.lttng2.control.core.model.LogLevelType;
import org.eclipse.tracecompass.internal.lttng2.control.core.model.TraceDomainType;
/**
* Interface for a dialog box for collecting information about the loggers to enable.
*
* @author Bruno Roy
*/
public interface IGetLoggerInfoDialog extends IBaseGetInfoDialog {
// ------------------------------------------------------------------------
// Accessors
// ------------------------------------------------------------------------
/**
* @return a log level type (loglevel or loglevel-only)
*/
LogLevelType getLogLevelType();
/**
* @return a log level
*/
ITraceLogLevel getLogLevel();
/**
* Sets the logger domain type
* @param domain - the domain type ({@link TraceDomainType})
*/
void setLoggerDomain(TraceDomainType domain);
}