com.sksamuel.jqm4gwt.HasRel 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] 9 Jul 2011 22:36:48
*
* Interface for elements that accept a rel attribute for determing how a link is processed.
*
*/
public interface HasRel {
String getRel();
/**
* Set to dialog for a dialog page.
*/
void setRel(String rel);
/**
* Set to dialog for a dialog page.
*/
T withRel(String rel);
}