com.sksamuel.jqm4gwt.HasGridDimensions 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.sksamuel.jqm4gwt.form.elements.JQMTextArea;
/**
* @author Stephen K Samuel [email protected] 11 May 2011 13:54:02
*
* This interface is for widgets that have two dimensions, eg a {@link JQMTextArea}
*/
public interface HasGridDimensions {
/**
* Returns the number of columns
*/
int getColumns();
/**
* Returns the number of rows
*/
int getRows();
void setColumns(int columns);
T withColumns(int columns);
void setRows(int rows);
T withRows(int rows);
}