Example usage for org.apache.wicket.model ResourceModel wrapOnAssignment

List of usage examples for org.apache.wicket.model ResourceModel wrapOnAssignment

Introduction

In this page you can find the example usage for org.apache.wicket.model ResourceModel wrapOnAssignment.

Prototype

@Override
    public IWrapModel<String> wrapOnAssignment(final Component component) 

Source Link

Usage

From source file:org.wicketstuff.gchart.gchart.options.AbstractOptionHelper.java

License:Apache License

@Override
public IModel<String> getChartLabelResourceModel(String subKey) {
    ResourceModel resourceModel = new ResourceModel(getChartBaseResourceKey() + subKey);
    return resourceModel.wrapOnAssignment(chart);
}