Example usage for org.apache.wicket.extensions.markup.html.tabs TabbedPanel subclass-usage

List of usage examples for org.apache.wicket.extensions.markup.html.tabs TabbedPanel subclass-usage

Introduction

In this page you can find the example usage for org.apache.wicket.extensions.markup.html.tabs TabbedPanel subclass-usage.

Usage

From source file com.axway.ats.testexplorer.pages.model.BookmarkableTabbedPanel.java

public class BookmarkableTabbedPanel extends TabbedPanel<ITab> {

    private static final long serialVersionUID = 1L;

    private PageParameters pageParameters;

From source file com.doculibre.constellio.wicket.panels.admin.tabs.AdminLeftMenuPanel.java

@SuppressWarnings("serial")
public abstract class AdminLeftMenuPanel extends TabbedPanel {

    private IModel extraModel;

    public AdminLeftMenuPanel(String id) {

From source file com.doculibre.constellio.wicket.panels.admin.tabs.AdminTopMenuPanel.java

@SuppressWarnings("serial")
public class AdminTopMenuPanel extends TabbedPanel {

    private BreadCrumbBar breadCrumbBar;

    @SuppressWarnings("unchecked")

From source file com.evolveum.midpoint.web.component.AjaxTabbedPanel.java

/**
 * Ajaxified version of the tabbed panel. Uses AjaxFallbackLink instead of regular wicket links so
 * it can update itself inplace.
 *
 * @author Igor Vaynberg (ivaynberg)
 * @author shood

From source file com.norconex.commons.wicket.bootstrap.tab.BootstrapTabbedPanel.java

/**
 * Bootstrap tabbed-panel.
 * @author Pascal Essiembre
 *
 * @param <T> {@link ITab} implementation
 */

From source file org.brixcms.web.tab.BrixTabbedPanel.java

public class BrixTabbedPanel extends TabbedPanel {
    public BrixTabbedPanel(String id, List<IBrixTab> tabs) {
        super(id, sort(tabs));
    }

    static List<ITab> sort(List<IBrixTab> tabs) {

From source file org.devgateway.eudevfin.ui.common.components.tabs.BootstrapAjaxTabbedPanel.java

/**
 * Copy of AjaxTabbedPanel, with bootstrap compatibility
 *
 * @author aartimon@developmentgateway.org
 * @see org.apache.wicket.extensions.ajax.markup.html.tabs.AjaxTabbedPanel
 * @since 01 November2013

From source file org.jabylon.rest.ui.wicket.components.BootstrapTabbedPanel.java

public class BootstrapTabbedPanel<T extends ITab> extends TabbedPanel<T> {
    /**
     *
     */
    private static final long serialVersionUID = 1L;

From source file org.wicketstuff.security.extensions.markup.html.tabs.SecureTabbedPanel.java

/**
 * A Tab bar that hides the tabs if the user has insufficient rights to see the contents. Note that
 * tabs not implementing the {@link ISecureTab} interface will always show up.
 * 
 * @param <T>
 *            The type of panel to be used for this component's tabs. Just use {@link ITab} if you

From source file org.wuqispank.web.BookmarkableTabbedPanel2.java

public class BookmarkableTabbedPanel2<T extends ITab> extends TabbedPanel {
    private static final Logger log = LoggerFactory.getLogger(BookmarkableTabbedPanel2.class);

    private static final long serialVersionUID = 6715403003765254144L;

    private PageParameters pageParameters;