Example usage for org.apache.wicket.markup.html.list ListView getDefaultModelObjectAsString

List of usage examples for org.apache.wicket.markup.html.list ListView getDefaultModelObjectAsString

Introduction

In this page you can find the example usage for org.apache.wicket.markup.html.list ListView getDefaultModelObjectAsString.

Prototype

public final String getDefaultModelObjectAsString() 

Source Link

Document

Gets a model object as a string.

Usage

From source file:org.geoserver.security.web.AbstractConfirmRemovalPanelTest.java

License:Open Source License

protected String labelTextForRemovedObjects() {
    ListView list = (ListView) tester
            .getComponentFromLastRenderedPage("form:panel:removedObjects:rulesRemoved:rules");

    return list.getDefaultModelObjectAsString();
}

From source file:org.geoserver.security.web.AbstractConfirmRemovalPanelTest.java

License:Open Source License

protected String labelTextForProblematicObjects() {
    ListView list = (ListView) tester
            .getComponentFromLastRenderedPage("form:panel:problematicObjects:rulesNotRemoved:problems");
    return list.getDefaultModelObjectAsString();
}