All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sksamuel.jqm4gwt.HasGridDimensions Maven / Gradle / Ivy

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); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy