Interface ICDATASectionProcessor

All Superinterfaces:
IProcessor
All Known Implementing Classes:
AbstractCDATASectionProcessor, StandardInliningCDATASectionProcessor

public interface ICDATASectionProcessor extends IProcessor

Base interface for all processors that execute on CDATA Section events (ICDATASection).

Since:
3.0.0
Author:
Daniel Fernández
See Also:
  • Method Details

    • process

      void process(ITemplateContext context, ICDATASection cdataSection, ICDATASectionStructureHandler structureHandler)

      Execute the processor.

      The ICDATASection object argument is immutable, so all modifications to this object or any instructions to be given to the engine should be done through the specified ICDATASectionStructureHandler handler.

      Parameters:
      context - the execution context.
      cdataSection - the event this processor is executing on.
      structureHandler - the handler that will centralise modifications and commands to the engine.