com.jwebmp.plugins.modernizr.implementations.ModernizrModuleInclusion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwebmp-modernizr Show documentation
Show all versions of jwebmp-modernizr Show documentation
The JWebSwing implementation for the Modernizr Library
The newest version!
package com.jwebmp.plugins.modernizr.implementations;
import com.guicedee.guicedinjection.interfaces.IGuiceScanModuleInclusions;
import jakarta.validation.constraints.NotNull;
import java.util.HashSet;
import java.util.Set;
public class ModernizrModuleInclusion implements IGuiceScanModuleInclusions
{
@Override
public @NotNull Set includeModules()
{
Set set = new HashSet<>();
set.add("com.jwebmp.plugins.modernizr");
return set;
}
}