com.sksamuel.jqm4gwt.HasInset 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 13:29:34
*
* Interface for elements or groups that can be set to inset mode.
* What inset mode does is dependant on the actual implementing element.
*/
public interface HasInset {
/**
* Returns true if this widget is set to inset mode
*/
boolean isInset();
/**
* Sets the widget to inset mode or not.
*
* @param inset if true then this widget is set to inset, if false then
* inset mode is disabled
*/
void setInset(boolean inset);
/**
* Sets the widget to inset mode or not.
*
* @param inset if true then this widget is set to inset, if false then
* inset mode is disabled
*/
T withInset(boolean inset);
}