org.asciidoctor.extension.Name Maven / Gradle / Ivy
package org.asciidoctor.extension;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Use this annotation to define the block name handled by a BlockProcessor, or the macro name of a
* BlockMacroProcessor or InlineMacroProcessor.
* Applicable for:
*
* BlockMacroProcessor ✓
* BlockProcessor ✓
* BlockProcessor ✓
* DocInfoProcessor
* IncludeProcessor
* InlineMacroProcessor
* Postprocessor
* Preprocessor
* Treeprocessor
*
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface Name {
String value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy