Example usage for org.apache.wicket.markup.html.link BookmarkablePageLink subclass-usage

List of usage examples for org.apache.wicket.markup.html.link BookmarkablePageLink subclass-usage

Introduction

In this page you can find the example usage for org.apache.wicket.markup.html.link BookmarkablePageLink subclass-usage.

Usage

From source file com.googlecode.wicket.jquery.ui.markup.html.link.BookmarkablePageLink.java

/**
 * Provides a Kendo UI button based on a built-in {@code BookmarkablePageLink}
 *
 * @param <T> the model object type
 * @author Sebastien Briquet - sebfz1
 * @since 6.19.0

From source file com.googlecode.wicket.kendo.ui.markup.html.link.BookmarkablePageLink.java

/**
 * Provides a Kendo UI button based on a built-in {@code BookmarkablePageLink}
 *
 * @param <T> the model object type
 * @author Sebastien Briquet - sebfz1
 * @since 6.19.0

From source file com.pushinginertia.wicket.core.markup.html.link.AnchoredBookmarkablePageLink.java

/**
 * A bookmarkable URL that specifies a custom anchor link. Based off a wicket mail list posting by Thijs Vonk.
 * @see <a href="http://apache-wicket.1842946.n4.nabble.com/Anchors-in-Wicket-td1866779.html">http://apache-wicket.1842946.n4.nabble.com/Anchors-in-Wicket-td1866779.html</a>
 */
public class AnchoredBookmarkablePageLink extends BookmarkablePageLink {
    private static final long serialVersionUID = 1L;

From source file com.romeikat.datamessie.core.base.ui.table.TableBookmarkablePageLink.java

public class TableBookmarkablePageLink<T> extends BookmarkablePageLink<T> implements ITableComponent {

    private static final long serialVersionUID = 1L;

    private final IModel<String> labelModel;

From source file dk.frankbille.scoreboard.security.SecureExecutionBookmarkablePageLink.java

public class SecureExecutionBookmarkablePageLink<T> extends BookmarkablePageLink<T>
        implements RequiresLoginToBeEnabled {
    private static final long serialVersionUID = 1L;

    public <C extends Page> SecureExecutionBookmarkablePageLink(String id, Class<C> pageClass) {
        super(id, pageClass);

From source file dk.frankbille.scoreboard.security.SecureRenderingBookmarkablePageLink.java

public class SecureRenderingBookmarkablePageLink<T> extends BookmarkablePageLink<T>
        implements RequiresLoginToRender {
    private static final long serialVersionUID = 1L;

    public <C extends Page> SecureRenderingBookmarkablePageLink(String id, Class<C> pageClass) {
        super(id, pageClass);

From source file eu.uqasar.web.components.AnchorableBookmarkablePageLink.java

/**
 *
 *
 * @param <T>
 */
public class AnchorableBookmarkablePageLink<T> extends BookmarkablePageLink<T> {

From source file fiftyfive.wicket.link.HomeLink.java

/**
 * A bookmarkable link to the home page. The home page is determined by the
 * application configuration.
 * 
 * @since 2.0
 * @see Application#getHomePage()

From source file fiftyfive.wicket.shiro.markup.LogoutLink.java

/**
 * A simple bookmarkable link to the {@link LogoutPage} that is hidden for users who aren't
 * logged in. Upon logout, the user will be sent to the home page or another page as specified
 * by the {@code LogoutLink} constructor.
 * 
 * @author Matt Brictson

From source file jp.go.nict.langrid.management.web.view.component.link.PopupLink.java

/**
 * 
 * 
 * @author Masaaki Kamiya
 * @author $Author$
 * @version $Revision$