1 package com.loribel.commons.abstraction; 2 3 /*** 4 * Abstraction of object that can be to represent with a String. 5 * 6 * @author Grégory Borelli 7 */ 8 public interface GB_TextRepresentable 9 { 10 /*** 11 * Return a representation of an object as a String. 12 */ 13 String toText(); 14 15 }