com.jwebmp.plugins.skycons.configurator.SkyconSetupFeature Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwebmp-skycons Show documentation
Show all versions of jwebmp-skycons Show documentation
The JWebMP implementation for SkyCons
The newest version!
package com.jwebmp.plugins.skycons.configurator;
import com.jwebmp.core.Feature;
import javax.validation.constraints.NotNull;
public class SkyconSetupFeature
extends Feature
{
public SkyconSetupFeature()
{
super("SetupSkycons");
setSortOrder(Integer.MIN_VALUE);
}
@Override
public @NotNull Integer getSortOrder()
{
return Integer.MIN_VALUE;
}
@Override
protected void assignFunctionsToComponent()
{
addQuery("skycons = new Skycons({\"color\": \"" + SkyconPageConfigurator.getColour() + "\"});");
}
}