com.sksamuel.jqm4gwt.HasMini 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] 6 Sep 2012 00:44:56
*
* For widgets that can be rendered in normal or mini mode
*
*/
public interface HasMini {
boolean isMini();
void setMini(boolean mini);
T withMini(boolean mini);
}