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

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	";
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy