Package bear.plugins

Examples of bear.plugins.ServerToolPlugin


    public DependencyResult pulse() {
        DependencyResult result = new DependencyResult(Result.OK);

        for (Field field : OpenBean.fieldsOfType(this, ServerToolPlugin.class)) {
            try {
                ServerToolPlugin plugin = (ServerToolPlugin) field.get(this);

                result.join(pulse(plugin, Predicates.<String>alwaysTrue()));
            } catch (IllegalAccessException e) {
                throw Exceptions.runtime(e);
            }
View Full Code Here


    public DependencyResult pulse() {
        DependencyResult result = new DependencyResult(Result.OK);

        for (Field field : OpenBean.fieldsOfType(this, ServerToolPlugin.class)) {
            try {
                ServerToolPlugin plugin = (ServerToolPlugin) field.get(this);

                result.join(pulse(plugin, Predicates.<String>alwaysTrue()));
            } catch (IllegalAccessException e) {
                throw Exceptions.runtime(e);
            }
View Full Code Here

TOP

Related Classes of bear.plugins.ServerToolPlugin

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.