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

com.sksamuel.jqm4gwt.HasTransition Maven / Gradle / Ivy

The newest version!
package com.sksamuel.jqm4gwt;

/**
 * @author Stephen K Samuel [email protected] 10 Jul 2011 00:58:28
 * 
 *         Interface for elements that accept a {@link Transition} parameter.
 */
public interface HasTransition {

	/**
	 * Returns the currently set {@link Transition} or null if no transition
	 * is set.
	 */
	Transition getTransition();

    /**
   	 * Sets the {@link Transition} replacing any existing value.
   	 */
   	void setTransition(Transition transition);

	/**
	 * Sets the {@link Transition} replacing any existing value.
	 */
	T withTransition(Transition transition);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy