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

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

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.
 *
 * 
 *   <xsd:attributeGroup name="cellattrs">
 * 	   <xsd:attribute name="rowspan" type="xsd:integer" default="1"/>
 * 	   <xsd:attribute name="colspan" type="xsd:integer" default="1"/>
 *   <xsd:attributeGroup>
 * 
* * @author Jacques Militello */ public interface CellAttrs extends AknObject { /** * Attribute name "rowspan". */ String ATTRIBUTE_ROW_SPAN = "rowspan"; /** * Attribute name "colspan". */ String ATTRIBUTE_COL_SPAN = "colspan"; /** * Default rowspan value (1). */ int ATTRIBUTE_DEFAULT_VALUE_ROWSPAN = 1; /** * Default colspan value (1). */ int ATTRIBUTE_DEFAULT_VALUE_COLSPAN = 1; Integer getRowSpan(); void setRowSpan(Integer rowspan); Integer getColSpan(); void setColSpan(Integer colspan); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy