Package ca.simplegames.micro

Examples of ca.simplegames.micro.Helper


        this.options = (Map<String, Object>) configuration.get(Globals.OPTIONS);
        klass = ClassUtilities.loadClass((String) configuration.get("class"));
    }

    public Helper getInstance(MicroContext context) throws Exception {
        Helper helper = (Helper) klass.newInstance();
        helper.register(context, options);
        return helper;
    }
View Full Code Here

TOP

Related Classes of ca.simplegames.micro.Helper

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.