List of usage examples for org.apache.wicket.markup.html.link AbstractLink subclass-usage
From source file br.com.digilabs.wicket.bootstrap.BootstrapModalCloseButton.java
/** * * @author inaiat */ public class BootstrapModalCloseButton extends AbstractLink {
From source file com.conwax.ajax.SimpleAjaxLink.java
public abstract class SimpleAjaxLink<T> extends AbstractLink implements ISimpleAjaxLink, IGenericComponent<T> { private static final long serialVersionUID = 1L; public SimpleAjaxLink(String id) { super(id); }
From source file com.servoy.extensions.beans.dbtreeview.OnlyTargetAjaxLink.java
/**
* This class represents an ajax link, who's callback will be ignored if
* the page is not the last the user accessed
*
* @author gboros
*/
From source file name.martingeisse.wicket.component.misc.RefererLink.java
/** * A link that uses the "referer" header field for the target URL, * so it links back to the referring page. */ public class RefererLink extends AbstractLink {
From source file name.martingeisse.wicket.helpers.RefererLink.java
/** * A link that uses the "referer" header field for the target URL, * so it links back to the referring page. */ public class RefererLink extends AbstractLink {
From source file net.databinder.components.WebLink.java
/**
* Component for an anchor linking outside of Wicket. Similar to
* wicket.markup.html.link.ExternaLink, but uses an IModel for the href attribute
* value and will not replace its body. (Use a span with wicket.markup.html.basic.Label
* for variable link body text.)
* @author Nathan Hamblen
From source file org.artifactory.common.wicket.component.links.BaseTitledLink.java
/** * @author Yoav Aharoni */ public class BaseTitledLink extends AbstractLink implements Titled { private static final Logger LOG = LoggerFactory.getLogger(BaseTitledLink.class); private boolean wasOpenCloseTag;
From source file org.brixcms.web.nodepage.AbstractPageParametersLink.java
/**
* Base class that knows how to recursively collect parameters from child nodes that implement {@link
* PageParametersAware}. Child nodes contribute parameters that they need for future instantiation, allowing a stateful
* URL to be composed from the dynamic closure of the page and it's tiles.
*
* @author Igor Vaynberg
From source file org.brixcms.web.nodepage.BrixPageLink.java
/**
* A component that links to a page with specified page parameters.
* <p/>
* This component is different from {@link PageParametersLink} because it does not allow other components to contribute
* their page parameters to the generated url and therefore does not propagate state from one page to the next.
* <p/>
From source file org.brixcms.web.reference.ReferenceLink.java
public class ReferenceLink extends AbstractLink { private static final long serialVersionUID = 1L; private final Reference reference; public ReferenceLink(String id, Reference reference) {