Package org.pirkaengine.core

Examples of org.pirkaengine.core.IllegalFormatException


     * @return Functionインスタンス
     */
    public static ScriptFunction create(String language, String function, String script) {
        int idx = function.indexOf('(');
        if (idx < 0) {
            throw new IllegalFormatException("function format: foo() or foo(hoge), but :" + function);
        }
        String name = Functions.getName(function);
        String[] params = Functions.getParams(function);
        if (params.length == 0) {
            return new ScriptFunction(language, script, name);
View Full Code Here

TOP

Related Classes of org.pirkaengine.core.IllegalFormatException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.