
rhino1.7.6.testsrc.org.mozilla.javascript.drivers.LanguageVersion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rhino Show documentation
Show all versions of rhino Show documentation
Rhino is an open-source implementation of JavaScript written entirely in Java. It is typically
embedded into Java applications to provide scripting to end users.
package org.mozilla.javascript.drivers;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.TYPE;
/**
* Intended to be used as an optional annotation for subclasses
* of {@link org.mozilla.javascript.drivers.ScriptTestsBase}.
* Sets the language version of test's script execution context.
*/
@Target(TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface LanguageVersion {
int value();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy