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

word.w2004.elements.tableElements.TableCol Maven / Gradle / Ivy

The newest version!
package word.w2004.elements.tableElements;



/**
 * @author leonardo_correa
 * 
 * Concrete strategy. 
 * 
 * THIS CLASS SHOULD ACTUALLY BE CALLED TableRow. 
 * 
 */
public class TableCol implements ITableItemStrategy{
	
	public String getTop() {
		return "\n		";
	}

	public String getMiddle() {
		String td =
			"                 "
			+"\n                     "
			+"\n                         "
			+"\n                     "
			+"\n                     "
			+"\n                         "
			+"\n                            {value} "
			+"\n                         "
			+"\n                     "
			+"\n                 "				
			;
		return td;
	}
	
	public String getBottom() {
		return "\n		";
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy