word.w2004.elements.tableElements.TableFooter Maven / Gradle / Ivy
The newest version!
package word.w2004.elements.tableElements;
/**
* @author leonardo_correa
*
* Concrete strategy
*
* This is the same of TableCol but with the cel content in bold.
*
*/
public class TableFooter implements ITableItemStrategy{
public String getTop() {
return "\n ";
}
public String getMiddle() {
String td =
" "
+"\n "
+"\n "
+"\n "
+"\n "
+"\n "
+"\n "
+"\n "
+"\n "
+"\n {value} "
+"\n "
+"\n "
+"\n "
;
return td;
}
public String getBottom() {
return "\n ";
}
}