Package com.guokr.simbase

Source Code of com.guokr.simbase.SimCommand

package com.guokr.simbase;

import com.guokr.simbase.errors.SimCommandException;

public abstract class SimCommand {

    public abstract String signature();

    public void invoke(SimEngine engine, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, String arg2, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, int arg2, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, float arg2, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, String[] arg2, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, int[] arg2, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, float[] arg2, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, String arg2, String arg3, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, String arg2, int arg3, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, String arg2, float arg3, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, String arg2, String[] arg3, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, String arg2, int[] arg3, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, String arg2, float[] arg3, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, int arg2, String arg3, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, int arg2, int arg3, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, int arg2, float arg3, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, int arg2, String[] arg3, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, int arg2, int[] arg3, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, int arg2, float[] arg3, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, float arg2, String arg3, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, float arg2, int arg3, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, float arg2, float arg3, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, float arg2, String[] arg3, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, float arg2, int[] arg3, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, float arg2, float[] arg3, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, int arg2, String arg3, int arg4, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

    public void invoke(SimEngine engine, String arg1, int arg2, String arg3, int[] arg4, SimCallback callback) {
        throw new SimCommandException("Wrong parameters passed in");
    }

}
TOP

Related Classes of com.guokr.simbase.SimCommand

TOP
Copyright © 2018 www.massapi.com. 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.