org.asciidoctor.extension.BlockMacroProcessor Java Examples
The following examples show how to use
org.asciidoctor.extension.BlockMacroProcessor.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: BlockMacroProcessorProxy.java From asciidoctorj with Apache License 2.0 | 5 votes |
public static RubyClass register(final JRubyAsciidoctor asciidoctor, final Class<? extends BlockMacroProcessor> blockMacroProcessor) { RubyClass rubyClass = ProcessorProxyUtil.defineProcessorClass(asciidoctor.getRubyRuntime(), "BlockMacroProcessor", new JRubyAsciidoctorObjectAllocator(asciidoctor) { @Override public IRubyObject allocate(Ruby runtime, RubyClass klazz) { return new BlockMacroProcessorProxy(asciidoctor, klazz, blockMacroProcessor); } }); applyAnnotations(blockMacroProcessor, rubyClass); ProcessorProxyUtil.defineAnnotatedMethods(rubyClass, BlockMacroProcessorProxy.class); return rubyClass; }
Example #2
Source File: BlockMacroProcessorProxy.java From asciidoctorj with Apache License 2.0 | 5 votes |
public static RubyClass register(final JRubyAsciidoctor asciidoctor, final BlockMacroProcessor blockMacroProcessor) { RubyClass rubyClass = ProcessorProxyUtil.defineProcessorClass(asciidoctor.getRubyRuntime(), "BlockMacroProcessor", new JRubyAsciidoctorObjectAllocator(asciidoctor) { @Override public IRubyObject allocate(Ruby runtime, RubyClass klazz) { return new BlockMacroProcessorProxy(asciidoctor, klazz, blockMacroProcessor); } }); applyAnnotations(blockMacroProcessor.getClass(), rubyClass); ProcessorProxyUtil.defineAnnotatedMethods(rubyClass, BlockMacroProcessorProxy.class); return rubyClass; }
Example #3
Source File: ExtensionGroupImpl.java From asciidoctorj with Apache License 2.0 | 5 votes |
@Override public ExtensionGroup blockMacro(final String blockName, final Class<? extends BlockMacroProcessor> blockMacroProcessor) { final RubyClass rubyClass = BlockMacroProcessorProxy.register(asciidoctor, blockMacroProcessor); registrators.add(new Registrator() { @Override public void register(IRubyObject registry) { registry.callMethod(rubyRuntime.getCurrentContext(), "block_macro", new IRubyObject[]{rubyClass, rubyRuntime.newSymbol(blockName)}); } }); return this; }
Example #4
Source File: ExtensionGroupImpl.java From asciidoctorj with Apache License 2.0 | 5 votes |
@Override public ExtensionGroup blockMacro(final Class<? extends BlockMacroProcessor> blockMacroProcessor) { final RubyClass rubyClass = BlockMacroProcessorProxy.register(asciidoctor, blockMacroProcessor); registrators.add(new Registrator() { @Override public void register(IRubyObject registry) { registry.callMethod(rubyRuntime.getCurrentContext(), "block_macro", new IRubyObject[]{rubyClass, rubyRuntime.newSymbol(AbstractProcessorProxy.getName(blockMacroProcessor))}); } }); return this; }
Example #5
Source File: ExtensionGroupImpl.java From asciidoctorj with Apache License 2.0 | 5 votes |
@Override public ExtensionGroup blockMacro(final String blockName, final String blockMacroProcessor) { try { Class<? extends BlockMacroProcessor> blockMacroProcessorClass = (Class<? extends BlockMacroProcessor>) Class.forName(blockMacroProcessor); return blockMacro(blockName, blockMacroProcessorClass); } catch (ClassNotFoundException e) { throw new RuntimeException(e); } }
Example #6
Source File: ExtensionGroupImpl.java From asciidoctorj with Apache License 2.0 | 5 votes |
@Override public ExtensionGroup blockMacro(final String blockMacroProcessor) { try { Class<? extends BlockMacroProcessor> blockMacroProcessorClass = (Class<? extends BlockMacroProcessor>) Class.forName(blockMacroProcessor); return blockMacro(blockMacroProcessorClass); } catch (ClassNotFoundException e) { throw new RuntimeException(e); } }
Example #7
Source File: ExtensionGroupImpl.java From asciidoctorj with Apache License 2.0 | 5 votes |
@Override public ExtensionGroup blockMacro(final BlockMacroProcessor blockMacroProcessor) { final RubyClass rubyClass = BlockMacroProcessorProxy.register(asciidoctor, blockMacroProcessor); registrators.add(new Registrator() { @Override public void register(IRubyObject registry) { registry.callMethod(rubyRuntime.getCurrentContext(), "block_macro", new IRubyObject[]{rubyClass, rubyRuntime.newSymbol(blockMacroProcessor.getName())}); } }); return this; }
Example #8
Source File: JavaExtensionRegistryImpl.java From asciidoctorj with Apache License 2.0 | 5 votes |
@Override public JavaExtensionRegistry blockMacro(String blockName, Class<? extends BlockMacroProcessor> blockMacroProcessor) { RubyClass rubyClass = BlockMacroProcessorProxy.register(asciidoctor, blockMacroProcessor); getAsciidoctorModule().callMethod("block_macro", rubyClass, rubyRuntime.newString(blockName)); return this; }
Example #9
Source File: JavaExtensionRegistryImpl.java From asciidoctorj with Apache License 2.0 | 5 votes |
@Override public JavaExtensionRegistry blockMacro(Class<? extends BlockMacroProcessor> blockMacroProcessor) { String name = getName(blockMacroProcessor); RubyClass rubyClass = BlockMacroProcessorProxy.register(asciidoctor, blockMacroProcessor); getAsciidoctorModule().callMethod("block_macro", rubyClass, rubyRuntime.newString(name)); return this; }
Example #10
Source File: JavaExtensionRegistryImpl.java From asciidoctorj with Apache License 2.0 | 5 votes |
@Override public JavaExtensionRegistry blockMacro(String blockName, String blockMacroProcessor) { try { Class<? extends BlockMacroProcessor> blockMacroProcessorClass = (Class<? extends BlockMacroProcessor>) Class.forName(blockMacroProcessor); blockMacro(blockName, blockMacroProcessorClass); return this; } catch (ClassNotFoundException e) { throw new RuntimeException(e); } }
Example #11
Source File: JavaExtensionRegistryImpl.java From asciidoctorj with Apache License 2.0 | 5 votes |
@Override public JavaExtensionRegistry blockMacro(String blockMacroProcessor) { try { Class<? extends BlockMacroProcessor> blockMacroProcessorClass = (Class<? extends BlockMacroProcessor>) Class.forName(blockMacroProcessor); blockMacro(blockMacroProcessorClass); return this; } catch (ClassNotFoundException e) { throw new RuntimeException(e); } }
Example #12
Source File: BlockMacroProcessorProxy.java From asciidoctorj with Apache License 2.0 | 4 votes |
public BlockMacroProcessorProxy(JRubyAsciidoctor asciidoctor, RubyClass metaClass, Class<? extends BlockMacroProcessor> blockMacroProcessorClass) { super(asciidoctor, metaClass, blockMacroProcessorClass); }
Example #13
Source File: BlockMacroProcessorProxy.java From asciidoctorj with Apache License 2.0 | 4 votes |
public BlockMacroProcessorProxy(JRubyAsciidoctor asciidoctor, RubyClass metaClass, BlockMacroProcessor blockMacroProcessor) { super(asciidoctor, metaClass, blockMacroProcessor); }
Example #14
Source File: JavaExtensionRegistryImpl.java From asciidoctorj with Apache License 2.0 | 4 votes |
@Override public JavaExtensionRegistry blockMacro(BlockMacroProcessor blockMacroProcessor) { RubyClass rubyClass = BlockMacroProcessorProxy.register(asciidoctor, blockMacroProcessor); getAsciidoctorModule().callMethod("block_macro", rubyClass); return this; }
Example #15
Source File: JavaExtensionRegistryImpl.java From asciidoctorj with Apache License 2.0 | 4 votes |
@Override public JavaExtensionRegistry blockMacro(String macroName, BlockMacroProcessor blockMacroProcessor) { RubyClass rubyClass = BlockMacroProcessorProxy.register(asciidoctor, blockMacroProcessor); getAsciidoctorModule().callMethod("block_macro", rubyClass, rubyRuntime.newString(macroName)); return this; }
Example #16
Source File: AsciidoctorJExtensionRegistry.java From asciidoctor-maven-plugin with Apache License 2.0 | 4 votes |
@Override @SuppressWarnings("unchecked") public void register(String extensionClassName, String blockName) throws MojoExecutionException { Class<? extends Processor> clazz; try { clazz = (Class<Processor>) Class.forName(extensionClassName); } catch (ClassCastException cce) { // Use RuntimeException to avoid catching, we only want the message in the Mojo throw new RuntimeException("'" + extensionClassName + "' is not a valid AsciidoctorJ processor class"); } catch (ClassNotFoundException e) { throw new RuntimeException("'" + extensionClassName + "' not found in classpath"); } // TODO: Replace with direct method calls again as soon as this project compiles against AsciidoctorJ 1.6.0 if (DocinfoProcessor.class.isAssignableFrom(clazz)) { register(javaExtensionRegistry, "docinfoProcessor", clazz); } else if (Preprocessor.class.isAssignableFrom(clazz)) { register(javaExtensionRegistry, "preprocessor", clazz); } else if (Postprocessor.class.isAssignableFrom(clazz)) { register(javaExtensionRegistry, "postprocessor", clazz); } else if (Treeprocessor.class.isAssignableFrom(clazz)) { register(javaExtensionRegistry, "treeprocessor", clazz); } else if (BlockProcessor.class.isAssignableFrom(clazz)) { if (blockName == null) { register(javaExtensionRegistry, "block", clazz); } else { register(javaExtensionRegistry, "block", blockName, clazz); } } else if (IncludeProcessor.class.isAssignableFrom(clazz)) { register(javaExtensionRegistry, "includeProcessor", clazz); } else if (BlockMacroProcessor.class.isAssignableFrom(clazz)) { if (blockName == null) { register(javaExtensionRegistry, "blockMacro", clazz); } else { register(javaExtensionRegistry, "blockMacro", blockName, clazz); } } else if (InlineMacroProcessor.class.isAssignableFrom(clazz)) { if (blockName == null) { register(javaExtensionRegistry, "inlineMacro", clazz); } else { register(javaExtensionRegistry, "inlineMacro", blockName, clazz); } } }