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