All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jtwig.reflection.Executable Maven / Gradle / Ivy

There is a newer version: 5.87.0.RELEASE
Show newest version
package org.jtwig.reflection;

import com.google.common.base.Supplier;
import org.jtwig.reflection.model.bean.BeanMethod;

public class Executable implements Supplier {
    private final BeanMethod beanMethod;
    private final Object[] arguments;

    public Executable(BeanMethod beanMethod, Object[] arguments) {
        this.beanMethod = beanMethod;
        this.arguments = arguments;
    }

    @Override
    public Object get() {
        return beanMethod.invoke(arguments);
    }
}