com.jwebmp.plugins.jqui.verticaltimeline.implementations.JQueryVerticalTimelineExclusionsModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwebmp-jqui-vertical-timeline Show documentation
Show all versions of jwebmp-jqui-vertical-timeline Show documentation
The JWebSwing JQuery Vertical Timeline
package com.jwebmp.plugins.jqui.verticaltimeline.implementations;
import com.guicedee.guicedinjection.interfaces.IGuiceScanModuleExclusions;
import jakarta.validation.constraints.NotNull;
import java.util.HashSet;
import java.util.Set;
public class JQueryVerticalTimelineExclusionsModule
implements IGuiceScanModuleExclusions
{
@Override
public @NotNull Set excludeModules()
{
Set strings = new HashSet<>();
strings.add("com.jwebmp.plugins.jqueryverticaltimeline");
return strings;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy