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