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.NewTagLmlMacroTag; import com.github.czyzby.lml.parser.tag.LmlTag; import com.github.czyzby.lml.parser.tag.LmlTagProvider; /** Provides tag creation macro tags. * * @author MJ */ public class NewTagLmlMacroTagProvider implements LmlTagProvider { @Override public LmlTag create(final LmlParser parser, final LmlTag parentTag, final StringBuilder rawTagData) { return new NewTagLmlMacroTag(parser, parentTag, rawTagData); } }