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

org.got5.tapestry5.jquery.services.impl.EffectsParamImpl Maven / Gradle / Ivy

There is a newer version: 4.1.1
Show newest version
package org.got5.tapestry5.jquery.services.impl;

import java.util.Collection;

import org.got5.tapestry5.jquery.services.EffectsParam;

/**
 * Principal Implementation of the EffectParam Service
 * Used to define the JavaScript files you want load, 
 * in order to use the jQuery Effects.
 * 
 * @since 2.6.0
 */
public class EffectsParamImpl implements EffectsParam {
	
	public Collection effectToLoad;
	
	public EffectsParamImpl(Collection effectToLoad) {
		super();
		this.effectToLoad = effectToLoad;
	}

	public Collection getEffectsToLoad() {
		return effectToLoad;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy