Example usage for org.apache.wicket.ajax.markup.html AjaxLink get

List of usage examples for org.apache.wicket.ajax.markup.html AjaxLink get

Introduction

In this page you can find the example usage for org.apache.wicket.ajax.markup.html AjaxLink get.

Prototype

@Override
public final Component get(String path) 

Source Link

Document

Get a child component by looking it up with the given path.

Usage

From source file:org.geoserver.importer.web.ImportPage.java

License:Open Source License

AjaxLink cancelLink(AjaxLink importLink) {
    return (AjaxLink) importLink.getParent().get("cancel");
}