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

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

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


/**
 * @author leonardo_correa
 * Strategy Design Pattern
 */
public interface ITableItemStrategy{
	public String getTop();
	public String getMiddle();
	public String getBottom();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy