com.sksamuel.jqm4gwt.HasId 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] 11 Jul 2011 22:05:22
*
* Widgets implementing this interface had a user definable id
*/
public interface HasId {
/**
* Returns the currently set ID
*/
String getId();
/**
* Change the ID to the given value
*/
void setId(String id);
/**
* Change the ID to the given value
*/
T withId(String id);
}