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