io.legaldocml.akn.attribute.TableAtts Maven / Gradle / Ivy
The newest version!
package io.legaldocml.akn.attribute;
import io.legaldocml.akn.AknObject;
/**
* These attributes specify the characteristics of the table.
*
* ```xml
*
*
*
*
*
*
* ```
*
* @author Jacques Militello
*/
public interface TableAtts extends AknObject {
Integer getWidth();
void setWidth(Integer width);
Integer getBorder();
void setBorder(Integer border);
Integer getCellspacing();
void setCellspacing(Integer cellspacing);
Integer getCellpadding();
void setCellpadding(Integer cellpadding);
}