All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jwebmp.plugins.skycons.configurator.SkyconSetupFeature Maven / Gradle / Ivy

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() + "\"});");
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy