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

org.asciidoctor.extension.Name Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
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