Example usage for org.apache.wicket.model StringResourceModel StringResourceModel

List of usage examples for org.apache.wicket.model StringResourceModel StringResourceModel

Introduction

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

Prototype

public StringResourceModel(final String resourceKey) 

Source Link

Document

Creates a new string resource model using the supplied parameter.

Usage

From source file:com.evolveum.midpoint.gui.api.component.result.OperationResultPanel.java

License:Apache License

@Override
public StringResourceModel getTitle() {
    return new StringResourceModel("OperationResultPanel.result");
}

From source file:com.evolveum.midpoint.web.component.data.column.ColumnUtils.java

License:Apache License

public static StringResourceModel createStringResource(String resourceKey, Object... objects) {
    return new StringResourceModel(resourceKey).setModel(new Model<String>()).setDefaultValue(resourceKey)
            .setParameters(objects);/*w  w  w.  j a v  a 2s .  co m*/
}

From source file:com.evolveum.midpoint.web.component.dialog.ConfirmationPanel.java

License:Apache License

@Override
public StringResourceModel getTitle() {
    return new StringResourceModel("AssignmentTablePanel.modal.title.confirmDeletion");
}

From source file:com.evolveum.midpoint.web.page.admin.resources.component.TestConnectionResultPanel.java

License:Apache License

@Override
public StringResourceModel getTitle() {
    return new StringResourceModel("TestConnectionResultPanel.testConnection.result");
}

From source file:com.evolveum.midpoint.web.page.admin.users.component.AssignmentsInfoDialog.java

License:Apache License

@Override
public StringResourceModel getTitle() {
    return new StringResourceModel("AssignmentPreviewDialog.label");
}

From source file:com.evolveum.midpoint.web.page.admin.users.component.DelegationTargetLimitationDialog.java

License:Apache License

@Override
public StringResourceModel getTitle() {
    return new StringResourceModel("AssignmentPreviewDialog.delegationPreviewLabel");
}