当前位置: 首页>>代码示例>>Java>>正文


Java IPagingLabelProvider类代码示例

本文整理汇总了Java中org.apache.wicket.markup.html.navigation.paging.IPagingLabelProvider的典型用法代码示例。如果您正苦于以下问题:Java IPagingLabelProvider类的具体用法?Java IPagingLabelProvider怎么用?Java IPagingLabelProvider使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


IPagingLabelProvider类属于org.apache.wicket.markup.html.navigation.paging包,在下文中一共展示了IPagingLabelProvider类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: newPagingNavigator

import org.apache.wicket.markup.html.navigation.paging.IPagingLabelProvider; //导入依赖的package包/类
@Override
protected PagingNavigator newPagingNavigator(String navigatorId, final DataTable<?, ?> table) {

    OAjaxBigPagingNavigator oAjaxBigPagingNavigator = new OAjaxBigPagingNavigator(navigatorId, table) {
        private static final long serialVersionUID = 1L;

        /**
         * Implement our own ajax event handling in order to update the datatable itself, as the
         * default implementation doesn't support DataViews.
         *
         * @see AjaxPagingNavigator#onAjaxEvent(org.apache.wicket.ajax.AjaxRequestTarget)
         */
        @Override
        protected void onAjaxEvent(final AjaxRequestTarget target) {
            target.add(table);
        }

        @Override
        protected PagingNavigation newNavigation(String id, IPageable pageable, IPagingLabelProvider labelProvider) {
            PagingNavigation nv = super.newNavigation(id, pageable, labelProvider);
            nv.setViewSize(NUMBER_PAGE_DISPLAYED);
            return nv;
        }

    };
    return oAjaxBigPagingNavigator;
}
 
开发者ID:orange-cloudfoundry,项目名称:elpaaso-core,代码行数:28,代码来源:AjaxNavigationCustomToolbar.java

示例2: HideablePagingNavigator

import org.apache.wicket.markup.html.navigation.paging.IPagingLabelProvider; //导入依赖的package包/类
public HideablePagingNavigator(final String id, final IPageable pageable, final IPagingLabelProvider labelProvider, int viewSize) {
	super(id);
	this.pageable = pageable;
	this.labelProvider = labelProvider;
	if (viewSize > 0) {
		this.viewSize = viewSize;
	} else {
		this.viewSize = DEFAULT_VIEW_SIZE;
	}
}
 
开发者ID:openwide-java,项目名称:owsi-core-parent,代码行数:11,代码来源:HideablePagingNavigator.java

示例3: newNavigation

import org.apache.wicket.markup.html.navigation.paging.IPagingLabelProvider; //导入依赖的package包/类
/**
 * Create a new PagingNavigation. May be subclassed to make us of specialized PagingNavigation.
 * 
 * @param pageable
 *            the pageable component
 * @param labelProvider
 *            The label provider for the link text.
 * @return the navigation object
 */
@Override
protected PagingNavigation newNavigation(final String id, final IPageable pageable,
	final IPagingLabelProvider labelProvider)
{
	return new PagingNavigation("navigation", pageable, labelProvider)
	{
		@Override
		public boolean isVisible()
		{
			// hide the numbered navigation bar e.g. 1 | 2 | 3 etc.
			return false;
		}
	};
}
 
开发者ID:sakaiproject,项目名称:sakai,代码行数:24,代码来源:SakaiPagingNavigator.java

示例4: newNavigation

import org.apache.wicket.markup.html.navigation.paging.IPagingLabelProvider; //导入依赖的package包/类
protected BootstrapPagingNavigation newNavigation(final String id, final IPageable pageable,
	final IPagingLabelProvider labelProvider) {
	return new BootstrapPagingNavigation(id, pageable, labelProvider);
}
 
开发者ID:openwide-java,项目名称:owsi-core-parent,代码行数:5,代码来源:HideablePagingNavigator.java

示例5: AjaxBootstrapPagingNavigation

import org.apache.wicket.markup.html.navigation.paging.IPagingLabelProvider; //导入依赖的package包/类
public AjaxBootstrapPagingNavigation(String id, IPageable pageable, IPagingLabelProvider labelProvider) {
	super(id, pageable, labelProvider);
}
 
开发者ID:openwide-java,项目名称:owsi-core-parent,代码行数:4,代码来源:AjaxBootstrapPagingNavigation.java

示例6: BootstrapPagingNavigation

import org.apache.wicket.markup.html.navigation.paging.IPagingLabelProvider; //导入依赖的package包/类
public BootstrapPagingNavigation(String id, IPageable pageable, IPagingLabelProvider labelProvider) {
	super(id, pageable, labelProvider);
}
 
开发者ID:openwide-java,项目名称:owsi-core-parent,代码行数:4,代码来源:BootstrapPagingNavigation.java

示例7: HideableAjaxPagingNavigator

import org.apache.wicket.markup.html.navigation.paging.IPagingLabelProvider; //导入依赖的package包/类
public HideableAjaxPagingNavigator(String id, IPageable pageable, IPagingLabelProvider labelProvider) {
	super(id, pageable, labelProvider);
}
 
开发者ID:openwide-java,项目名称:owsi-core-parent,代码行数:4,代码来源:HideableAjaxPagingNavigator.java

示例8: newNavigation

import org.apache.wicket.markup.html.navigation.paging.IPagingLabelProvider; //导入依赖的package包/类
@Override
protected BootstrapPagingNavigation newNavigation(final String id, final IPageable pageable, final IPagingLabelProvider labelProvider) {
	return new AjaxBootstrapPagingNavigation(id, pageable, labelProvider);
}
 
开发者ID:openwide-java,项目名称:owsi-core-parent,代码行数:5,代码来源:HideableAjaxPagingNavigator.java

示例9: PagingNavigator

import org.apache.wicket.markup.html.navigation.paging.IPagingLabelProvider; //导入依赖的package包/类
public PagingNavigator(String id, IPageable pageable, IPagingLabelProvider labelProvider) {
    super(id, pageable, labelProvider);
}
 
开发者ID:flex-oss,项目名称:flex-ui,代码行数:4,代码来源:PagingNavigator.java

示例10: newNavigation

import org.apache.wicket.markup.html.navigation.paging.IPagingLabelProvider; //导入依赖的package包/类
@Override
protected PagingNavigation newNavigation(String id, IPageable pageable, IPagingLabelProvider labelProvider) {
    return new FlexPagingNavigation(id, pageable, labelProvider);
}
 
开发者ID:flex-oss,项目名称:flex-ui,代码行数:5,代码来源:PagingNavigator.java

示例11: FlexPagingNavigation

import org.apache.wicket.markup.html.navigation.paging.IPagingLabelProvider; //导入依赖的package包/类
public FlexPagingNavigation(String id, IPageable pageable, IPagingLabelProvider labelProvider) {
    super(id, pageable, labelProvider);

    setMargin(2);
    setViewSize(5);
}
 
开发者ID:flex-oss,项目名称:flex-ui,代码行数:7,代码来源:FlexPagingNavigation.java

示例12: ConstellioFacetsPagingNavigator

import org.apache.wicket.markup.html.navigation.paging.IPagingLabelProvider; //导入依赖的package包/类
public ConstellioFacetsPagingNavigator(String id, IPageable pageable, FacetsDataProvider dataProvider,
		IPagingLabelProvider labelProvider, String facetName) {
	super(id, pageable, labelProvider);
	this.facetName = facetName;
	this.dataProvider = dataProvider;
}
 
开发者ID:BassJel,项目名称:Jouve-Project,代码行数:7,代码来源:ConstellioFacetsPagingNavigator.java

示例13: newNavigation

import org.apache.wicket.markup.html.navigation.paging.IPagingLabelProvider; //导入依赖的package包/类
@Override
protected PagingNavigation newNavigation(IPageable pageable, IPagingLabelProvider labelProvider) {
    PagingNavigation pagingNavigation = super.newNavigation(pageable, labelProvider);
    return pagingNavigation;
}
 
开发者ID:BassJel,项目名称:Jouve-Project,代码行数:6,代码来源:ConstellioFacetsPagingNavigator.java

示例14: ConstellioPagingNavigator

import org.apache.wicket.markup.html.navigation.paging.IPagingLabelProvider; //导入依赖的package包/类
public ConstellioPagingNavigator(String id, IPageable pageable, IPagingLabelProvider labelProvider) {
    super(id, pageable, labelProvider);
    initComponents();
}
 
开发者ID:BassJel,项目名称:Jouve-Project,代码行数:5,代码来源:ConstellioPagingNavigator.java

示例15: AutoHidePagingNavigator

import org.apache.wicket.markup.html.navigation.paging.IPagingLabelProvider; //导入依赖的package包/类
public AutoHidePagingNavigator(String id, IPageable pageable,
		IPagingLabelProvider labelProvider) {
	super(id, pageable, labelProvider);
	this.pageable = pageable;
}
 
开发者ID:BassJel,项目名称:Jouve-Project,代码行数:6,代码来源:AutoHidePagingNavigator.java


注:本文中的org.apache.wicket.markup.html.navigation.paging.IPagingLabelProvider类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。