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

org.analogweb.Invocation Maven / Gradle / Ivy

The newest version!
package org.analogweb;

/**
 * Invocation of entry-point method.
 *
 * @author snowgoose
 */
public interface Invocation {

    /**
     * Invoke entry-point method.
     *
     * @see ApplicationProcessor
     *
     * @return result of method invocation.
     */
    Object invoke();

    /**
     * Get entry-point object instance.
     *
     * @return entry-point object instance.
     */
    Object getInvocationInstance();

    /**
     * Get {@link InvocationArguments}
     *
     * @return {@link InvocationArguments}
     */
    InvocationArguments getInvocationArguments();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy