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

com.iodesystems.android.jsi.JsBridgeMethod Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package com.iodesystems.android.jsi;

import java.lang.reflect.Method;

public class JsBridgeMethod {
    private final Object target;
    private final Method method;
    private Boolean runOnUiThread;

    public JsBridgeMethod(Object target, Method method, boolean runOnUiThread) {
        this.target = target;
        this.method = method;
        this.runOnUiThread = runOnUiThread;
    }

    public Object getTarget() {
        return target;
    }

    public Method getMethod() {
        return method;
    }

    public Boolean getRunOnUiThread() {
        return runOnUiThread;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy