X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=org.eclipse.linuxtools.tmf.ui%2Fsrc%2Forg%2Feclipse%2Flinuxtools%2Ftmf%2Fui%2Fviews%2Fuml2sd%2Fload%2FIUml2SDLoader.java;h=9f93a3c9749a1df08154aa28d92469bfbfc928cf;hb=c8422608ac728e00b6b87d680bd807514916c0c1;hp=490a1ecf1cb346308125853e1553f7022fc6c9e6;hpb=94cce698a51527027627ee04f625da11e5119beb;p=deliverable%2Ftracecompass.git diff --git a/org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/tmf/ui/views/uml2sd/load/IUml2SDLoader.java b/org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/tmf/ui/views/uml2sd/load/IUml2SDLoader.java index 490a1ecf1c..9f93a3c974 100755 --- a/org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/tmf/ui/views/uml2sd/load/IUml2SDLoader.java +++ b/org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/tmf/ui/views/uml2sd/load/IUml2SDLoader.java @@ -1,45 +1,44 @@ /********************************************************************** - * Copyright (c) 2005, 2006 IBM Corporation and others. - * Copyright (c) 2011, 2012 Ericsson. - * + * Copyright (c) 2005, 2012 IBM Corporation, 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: - * IBM - Initial API and implementation - * Bernd Hufmann - Updated for TMF + * + * Contributors: + * IBM - Initial API and implementation + * Bernd Hufmann - Updated for TMF **********************************************************************/ + package org.eclipse.linuxtools.tmf.ui.views.uml2sd.load; import org.eclipse.linuxtools.tmf.ui.views.uml2sd.SDView; /** * The interface all UML2SD loaders must implement. - * + * * @version 1.0 * @author sveyrier */ public interface IUml2SDLoader { /** - * Set the viewer object to the loader that has been reloaded at the beginning + * Set the viewer object to the loader that has been reloaded at the beginning * of a new workbench session - * + * * @param viewer The sequence diagram view */ public void setViewer(SDView viewer); /** * Returns title string for the UML2SD View when this loader is the one - * + * * @return the string convenient for this loader */ public String getTitleString(); /** - * When another loader becomes the one the previous one is replaced It's time clean-up + * When another loader becomes the one the previous one is replaced It's time clean-up * if needed (listeners to be removed for example) */ public void dispose();