Example usage for org.apache.wicket.util.lang Args isFalse

List of usage examples for org.apache.wicket.util.lang Args isFalse

Introduction

In this page you can find the example usage for org.apache.wicket.util.lang Args isFalse.

Prototype

public static boolean isFalse(final boolean argument, final String msg, final Object... params) 

Source Link

Document

Check if argument is false

Usage

From source file:fiftyfive.wicket.js.locator.SearchLocation.java

License:Apache License

public SearchLocation(Class<?> scope, String path) {
    Args.notNull(scope, "scope");
    Args.notNull(path, "path");
    Args.isFalse(path.startsWith("/"), "path cannot start with \"/\": %s", path);

    this.scope = scope;
    this.path = path;
}