Example usage for org.apache.commons.math3.exception.util Localizable Localizable

List of usage examples for org.apache.commons.math3.exception.util Localizable Localizable

Introduction

In this page you can find the example usage for org.apache.commons.math3.exception.util Localizable Localizable.

Prototype

Localizable

Source Link

Usage

From source file:nova.core.util.math.MatrixUtil.java

private static Localizable of(String string) {
    return new Localizable() {
        @Override//from  w  ww  . j av a2  s  . c  o  m
        public String getSourceString() {
            return string;
        }

        @Override
        public String getLocalizedString(Locale locale) {
            return string;
        }
    };
}