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