1 package com.loribel.commons.abstraction; 2 3 /*** 4 * Interface to do action on object and return String result. 5 * 6 * @author Grégory Borelli 7 * @version 2003/11/21 - 16:49:18 - gen 7.12 8 */ 9 public interface GB_ObjectActionToString 10 { 11 12 /*** 13 * Do an action on an object. 14 * 15 * @param a_object Object - Object on which one makes the action. 16 * 17 * @return String 18 */ 19 String doActionToString( 20 Object a_object); 21 22 }