com.sksamuel.jqm4gwt.TransitionIntf 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;
/**
* Needed to simplify custom transitions support.
*
See
* Creating custom CSS-based transitions
*/
public interface TransitionIntf> {
/** Returns the string value that JQM expects */
String getJqmValue();
/** Converts from JQM string value to actual class value */
T parseJqmValue(String jqmValue);
}