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

io.legaldocml.akn.attribute.CellAttrs Maven / Gradle / Ivy

The newest version!
package io.legaldocml.akn.attribute;

import io.legaldocml.akn.AknObject;

/**
 * These attributes are used to specify that table cells span more than one row or one column, exactly as in HTML.
 *
 * ```xml
 * 
 *   
 * 	 
 * 
 * ```
 *
 * @author Jacques Militello
 */
public interface CellAttrs extends AknObject {

    Integer getRowSpan();

    void setRowSpan(Integer rowspan);

    Integer getColSpan();

    void setColSpan(Integer colspan);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy