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

org.sikuli.script.runnerSupport.IRunnerSupport Maven / Gradle / Ivy

There is a newer version: 2.0.5
Show newest version
/*
 * Copyright (c) 2010-2020, sikuli.org, sikulix.com - MIT license
 */

package org.sikuli.script.runnerSupport;

/**
 * This interface provides script language specific methods which are non a part
 * of ScriptRunner classes.
 *
 * These methods may be used both in case of a script running from IDE or from
 * sikulixapi library without IDE.
 */
public interface IRunnerSupport {
    /**
     * Run callback for observers.
     *
     * @param args
     *            is array for two elements. First is a callback object. Second
     *            is an event.
     * @return true if the callback was ran correctly. False in other cases.
     */
    public boolean runObserveCallback(Object[] args);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy