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