package com.github.czyzby.lml.vis.parser.impl.nongwt.attribute.file; import com.github.czyzby.lml.parser.LmlParser; import com.github.czyzby.lml.parser.tag.LmlAttribute; import com.github.czyzby.lml.parser.tag.LmlTag; import com.kotcrab.vis.ui.widget.file.FileChooser; /** See {@link FileChooser#setWatchingFilesEnabled(boolean)}. Mapped to "watchingFilesEnabled", "watchFiles", "watch". * * @author MJ */ public class WatchFilesLmlAttribute implements LmlAttribute<FileChooser> { @Override public Class<FileChooser> getHandledType() { return FileChooser.class; } @Override public void process(final LmlParser parser, final LmlTag tag, final FileChooser actor, final String rawAttributeData) { actor.setWatchingFilesEnabled(parser.parseBoolean(rawAttributeData, actor)); } }