package com.github.czyzby.lml.parser.impl.tag.macro.provider; import com.github.czyzby.lml.parser.LmlParser; import com.github.czyzby.lml.parser.impl.tag.macro.CommentLmlMacroTag; import com.github.czyzby.lml.parser.tag.LmlTag; import com.github.czyzby.lml.parser.tag.LmlTagProvider; /** Providers comment macro tags. * * @author MJ */ public class CommentLmlMacroTagProvider implements LmlTagProvider { @Override public LmlTag create(final LmlParser parser, final LmlTag parentTag, final StringBuilder rawTagData) { return new CommentLmlMacroTag(parser, parentTag, rawTagData); } }