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

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

The newest version!
package com.jwebmp.plugins.skycons.configurator;

import com.jwebmp.core.Feature;

import javax.validation.constraints.NotNull;

public class SkyconStartFeature
		extends Feature
{
	public SkyconStartFeature()
	{
		super("StartSkycons");
		setSortOrder(Integer.MIN_VALUE);
	}

	@Override
	public @NotNull Integer getSortOrder()
	{
		return Integer.MAX_VALUE;
	}

	@Override
	protected void assignFunctionsToComponent()
	{
		addQuery("skycons.play();");
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy