org.kohsuke.ajaxterm.Esc Maven / Gradle / Ivy
The newest version!
package org.kohsuke.ajaxterm;
import static java.lang.annotation.ElementType.METHOD;
import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Target;
/**
* Indicates an escape sequence handling method.
*
* @author Kohsuke Kawaguchi
*/
@Retention(RUNTIME)
@Target(METHOD)
@interface Esc {
String[] value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy