Package packagefile.scriptServiceJarExtension

Examples of packagefile.scriptServiceJarExtension.Greeter


     */
    public String greet(String name, String hint)
    {
        try {
            // Test dynamic component lookup.
            Greeter greeter = componentManager.getInstance(Greeter.class, hint);
            return greeter.greet(name);
        } catch (ComponentLookupException e) {
            return null;
        }
    }
View Full Code Here

TOP

Related Classes of packagefile.scriptServiceJarExtension.Greeter

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.