com.jwebmp.plugins.materialicons.implementations.MaterialIconsExclusionsModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwebmp-material-icons Show documentation
Show all versions of jwebmp-material-icons Show documentation
The JWebSwing implementation for Material Icons
package com.jwebmp.plugins.materialicons.implementations;
import com.guicedee.guicedinjection.interfaces.IGuiceScanJarExclusions;
import com.guicedee.guicedinjection.interfaces.IGuiceScanModuleExclusions;
import javax.validation.constraints.NotNull;
import java.util.HashSet;
import java.util.Set;
public class MaterialIconsExclusionsModule
implements IGuiceScanModuleExclusions,
IGuiceScanJarExclusions
{
@Override
public @NotNull Set excludeJars()
{
Set strings = new HashSet<>();
strings.add("jwebmp-material-icons-*");
return strings;
}
@Override
public @NotNull Set excludeModules()
{
Set strings = new HashSet<>();
strings.add("com.jwebmp.plugins.materialicons");
return strings;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy