Package net.canarymod.hook

Examples of net.canarymod.hook.Dispatcher


    }
    public static interface IDispatcher {
        public void execute(PluginListener listener, Hook hook);
    }
    public Dispatcher getDispatcher(final IDispatcher impl){
        return new Dispatcher(){
            public void execute(PluginListener listener, Hook hook){
                impl.execute(listener, hook);
            }
        };
    }
View Full Code Here

TOP

Related Classes of net.canarymod.hook.Dispatcher

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.