tmf: Update copyright headers in tmf.ui
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / handlers / provider / ISDAdvancedPagingProvider.java
index 7a4e6394f1d3270be616cac416ef3fc6a7a2a108..65c82c9e5ae52a6783f7aaaac351c86fbf00d1e1 100755 (executable)
@@ -1,34 +1,33 @@
 /**********************************************************************
- * 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.handlers.provider;
 
 /**
  * Interface for providing an extended find provider.
- * 
+ *
  * An advanced paging provider is able to compute number of pages, and to display the number of items it treats on each
  * page and for total counts.<br>
  * An item can be a message, a node or anything meaningful from loader standpoint.<br>
  * Items are only here for information to the user.
- * 
- * @version 1.0 
+ *
+ * @version 1.0
  * @author sveyrier
  */
 public interface ISDAdvancedPagingProvider extends ISDPagingProvider {
 
     /**
      * Returns the current page.
-     * 
+     *
      * @return the current page the loader is dealing with. <b>Note</b> that first page has the 0 index (indexes are from
      *         0 to pagesCount()-1).
      */
@@ -36,7 +35,7 @@ public interface ISDAdvancedPagingProvider extends ISDPagingProvider {
 
     /**
      * Returns the number of pages.
-     * 
+     *
      * @return number of pages the loader is dealing with
      */
     public int pagesCount();
@@ -44,7 +43,7 @@ public interface ISDAdvancedPagingProvider extends ISDPagingProvider {
     /**
      * Instructs a load of the &lt;pageNumber_&gt;<i>th</i> page.<br>
      * <b>Note</b> that first page has the index 0 (indexes are from 0 to pagesCount()-1).
-     * 
+     *
      * @param pageNumber index of the page to load
      */
     public void pageNumberChanged(int pageNumber);
This page took 0.024759 seconds and 5 git commands to generate.