com.sksamuel.jqm4gwt.HasTransition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jqm4gwt-standalone Show documentation
Show all versions of jqm4gwt-standalone Show documentation
jqm4gwt bundled with all of its dependencies
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);
}