X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=org.eclipse.linuxtools.lttng2.ui%2Fsrc%2Forg%2Feclipse%2Flinuxtools%2Finternal%2Flttng2%2Fui%2Fviews%2Fcontrol%2Fmodel%2FITraceControlComponentChangedListener.java;h=e11b811478d761a35eac6e8bf9ab3bb84dc213a6;hb=a6e6f7b4c37dc5adce8b2deeaf1d360b1284ad46;hp=7c60924642cd3bf03216a662409748ba22ae172a;hpb=22307af393885de761f4a2e2ee51a00123c75a84;p=deliverable%2Ftracecompass.git diff --git a/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/model/ITraceControlComponentChangedListener.java b/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/model/ITraceControlComponentChangedListener.java index 7c60924642..e11b811478 100644 --- a/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/model/ITraceControlComponentChangedListener.java +++ b/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/model/ITraceControlComponentChangedListener.java @@ -1,22 +1,22 @@ /********************************************************************** - * 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.model; /** *

- * Listener interface a class can implement to be notified about changes - * of components + * Listener interface a class can implement to be notified about changes + * of components *

- * + * * @author Bernd Hufmann */ public interface ITraceControlComponentChangedListener { @@ -25,18 +25,18 @@ public interface ITraceControlComponentChangedListener { * @param parent - the parent where the child was added. * @param component - the child that was added. */ - public void componentAdded(ITraceControlComponent parent, ITraceControlComponent component); + void componentAdded(ITraceControlComponent parent, ITraceControlComponent component); /** * Interface for notifications about the removal of a child. * @param parent - the parent where the child was removed. * @param component - the child that was removed. */ - public void componentRemoved(ITraceControlComponent parent, ITraceControlComponent component); + void componentRemoved(ITraceControlComponent parent, ITraceControlComponent component); /** * NInterface for notifications about the change of a component. * @param component - the component that was changed. */ - public void componentChanged(ITraceControlComponent component); + void componentChanged(ITraceControlComponent component); }