Package org.openengsb.core.services.internal

Examples of org.openengsb.core.services.internal.SimpleMethodInvocation


import org.openengsb.core.services.internal.SimpleMethodInvocation;

public final class MethodInvocationUtils {

    public static MethodInvocation create(Object object, String methodName) {
        return new SimpleMethodInvocation(object, methodName);
    }
View Full Code Here


    public static MethodInvocation create(Object object, String methodName) {
        return new SimpleMethodInvocation(object, methodName);
    }

    public static MethodInvocation create(Object object, String methodName, Object... objects) {
        return new SimpleMethodInvocation(object, methodName, objects);
    }
View Full Code Here

TOP

Related Classes of org.openengsb.core.services.internal.SimpleMethodInvocation

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.