com.jwebmp.plugins.angularzoomanimation.implementations.AngularZoomInclusionsModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwebmp-angular-ui-zoom Show documentation
Show all versions of jwebmp-angular-ui-zoom Show documentation
The JWebSwing implementation for Angular UI Zoom
package com.jwebmp.plugins.angularzoomanimation.implementations;
import com.guicedee.guicedinjection.interfaces.IGuiceScanModuleInclusions;
import jakarta.validation.constraints.NotNull;
import java.util.HashSet;
import java.util.Set;
public class AngularZoomInclusionsModule implements IGuiceScanModuleInclusions
{
@Override
public @NotNull Set includeModules()
{
Set set = new HashSet<>();
set.add("com.jwebmp.plugins.angularzoomanimation");
return set;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy