X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=org.eclipse.linuxtools.lttng2.ui%2Fsrc%2Forg%2Feclipse%2Flinuxtools%2Finternal%2Flttng2%2Fui%2Fviews%2Fcontrol%2Fdialogs%2FIEnableKernelEvents.java;h=d009a552bd9d3ad1b01aeffbaa20fdf23294e7c0;hb=152ba1a7fabe7175ba1a6f267eda2b3891cbcb63;hp=02266a117d6524567250df0ed340b6257aab0857;hpb=115b4a011a6d454d317b035d616f649c75a9943c;p=deliverable%2Ftracecompass.git diff --git a/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/dialogs/IEnableKernelEvents.java b/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/dialogs/IEnableKernelEvents.java index 02266a117d..d009a552bd 100644 --- a/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/dialogs/IEnableKernelEvents.java +++ b/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/dialogs/IEnableKernelEvents.java @@ -1,12 +1,12 @@ /********************************************************************** - * Copyright (c) 2012 Ericsson - * + * Copyright (c) 2012, 2013 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: + * + * Contributors: * Bernd Hufmann - Initial API and implementation **********************************************************************/ package org.eclipse.linuxtools.internal.lttng2.ui.views.control.dialogs; @@ -14,100 +14,71 @@ package org.eclipse.linuxtools.internal.lttng2.ui.views.control.dialogs; import java.util.List; /** - * IEnableKernelEvents *

* Interface for providing information about kernel events to be enabled. *

+ * + * @author Bernd Hufmann */ public interface IEnableKernelEvents { // ------------------------------------------------------------------------ // Accessors // ------------------------------------------------------------------------ - + /** * @return a flag whether the tracepoints shall be configured. */ - public boolean isTracepoints(); - + boolean isTracepoints(); + /** * @return a flag indicating whether all tracepoints shall be enabled or not. */ - public boolean isAllTracePoints(); + boolean isAllTracePoints(); /** * @return a flag whether the syscalls shall be configured. */ - public boolean isSysCalls(); - + boolean isSysCalls(); + /** * @return a flag indicating whether syscalls shall be enabled or not. */ - public boolean isAllSysCalls(); + boolean isAllSysCalls(); /** * @return a list of event names to be enabled. */ - public List getEventNames(); + List getEventNames(); /** * @return a flag whether the dynamic probe shall be configured. */ - public boolean isDynamicProbe(); - + boolean isDynamicProbe(); + /** * @return event name of the dynamic probe (or null if no dynamic probe). */ - public String getProbeEventName(); + String getProbeEventName(); /** * @return the dynamic probe (or null if no dynamic probe). */ - public String getProbeName(); + String getProbeName(); /** * @return a flag whether the dynamic function entry/return probe shall be configured. */ - public boolean isDynamicFunctionProbe(); - + boolean isDynamicFunctionProbe(); + /** * @return event name of the dynamic function entry/exit probe (or null if no dynamic probe). */ - public String getFunctionEventName(); + String getFunctionEventName(); /** * @return the dynamic function entry/exit probe (or null if no dynamic probe). */ - public String getFunction(); + String getFunction(); -// /** -// * @return a flag whether events using wildcards should be enabled -// */ -// public boolean isWildcard(); -// -// /** -// * @return a wildcard -// */ -// public String getWildcard(); -// -// /** -// * @return a flag whether events using log levels should be enabled -// */ -// public boolean isLogLevel(); -// -// /** -// * @return a log level type (loglevel or loglevel-only) -// */ -// public LogLevelType getLogLevelType(); -// -// /** -// * @return a log level -// */ -// public TraceLogLevel getLogLevel(); -// -// /** -// * @return a event name for the log level enable action -// */ -// public String getLogLevelEventName(); - } \ No newline at end of file