com.jwebmp.plugins.textinputeffects.implementations.TextInputEffectsExclusionsModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwebmp-text-input-effects Show documentation
Show all versions of jwebmp-text-input-effects Show documentation
The JWebSwing implementation for the Text Input Effects collection
package com.jwebmp.plugins.textinputeffects.implementations;
import com.guicedee.guicedinjection.interfaces.IGuiceScanModuleExclusions;
import javax.validation.constraints.NotNull;
import java.util.HashSet;
import java.util.Set;
public class TextInputEffectsExclusionsModule
implements IGuiceScanModuleExclusions
{
@Override
public @NotNull Set excludeModules()
{
Set strings = new HashSet<>();
strings.add("com.jwebmp.plugins.textinputeffects");
return strings;
}
}