X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=org.eclipse.linuxtools.tmf.ui%2Fsrc%2Forg%2Feclipse%2Flinuxtools%2Ftmf%2Fui%2Fviews%2Fuml2sd%2Fhandlers%2Fprovider%2FISDAdvancedPagingProvider.java;h=65c82c9e5ae52a6783f7aaaac351c86fbf00d1e1;hb=c8422608ac728e00b6b87d680bd807514916c0c1;hp=7a4e6394f1d3270be616cac416ef3fc6a7a2a108;hpb=94cce698a51527027627ee04f625da11e5119beb;p=deliverable%2Ftracecompass.git diff --git a/org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/tmf/ui/views/uml2sd/handlers/provider/ISDAdvancedPagingProvider.java b/org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/tmf/ui/views/uml2sd/handlers/provider/ISDAdvancedPagingProvider.java index 7a4e6394f1..65c82c9e5a 100755 --- a/org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/tmf/ui/views/uml2sd/handlers/provider/ISDAdvancedPagingProvider.java +++ b/org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/tmf/ui/views/uml2sd/handlers/provider/ISDAdvancedPagingProvider.java @@ -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.
* An item can be a message, a node or anything meaningful from loader standpoint.
* 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. Note 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 <pageNumber_>th page.
* Note 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);