word.w2004.elements.tableElements.TableDefinition Maven / Gradle / Ivy
The newest version!
package word.w2004.elements.tableElements;
/**
* @author leonardo_correa
* This is returns all that crap at the top of the table, including table properties.
*
* It also returns the end of the table.
*/
public class TableDefinition implements ITableItemStrategy{
public String getTop() {
String top =
"\n "
+"\n "
+"\n "
+"\n "
+"\n "
+"\n "
+"\n "
+"\n "
+"\n "
+"\n "
+"\n "
+"\n "
+"\n "
+"\n "
+"\n "
+"\n "
+"\n "
;
return top;
}
public String getMiddle() {
return null; // N/A
}
public String getBottom() {
return "\n ";
}
}