com.sksamuel.jqm4gwt.LoadingIndicator 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;
import com.google.gwt.user.client.ui.Composite;
import com.google.gwt.user.client.ui.Image;
/**
* @author Stephen K Samuel [email protected] 17 Jul 2011 17:22:17
*
*/
public class LoadingIndicator extends Composite {
public LoadingIndicator() {
Image image = new Image(ImageResources.INSTANCE.ajaxLoader());
initWidget(image);
}
}