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

jp.vmi.selenium.selenese.inject.DoCommand Maven / Gradle / Ivy

package jp.vmi.selenium.selenese.inject;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import com.google.inject.BindingAnnotation;

import static java.lang.annotation.ElementType.*;
import static java.lang.annotation.RetentionPolicy.*;

/**
 * Annotates command execution.
 * 

* Expected signature: {@code Result method(Context context, ICommand command, String... curArgs)} *

*/ @BindingAnnotation @Target({ METHOD }) @Retention(RUNTIME) public @interface DoCommand { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy