1 package com.loribel.commons.abstraction; 2 3 /*** 4 * Interface permettant de gérer des actions sur des objets de type String. 5 * <p> 6 * 7 * @author Grégory Borelli 8 */ 9 public interface GB_StringAction 10 { 11 12 /*** 13 * Effectue une action sur une String. 14 * 15 * @param a_string String - String sur laquelle l'action doit s'effectuer. 16 * 17 * @return String 18 */ 19 String doAction( 20 String a_string); 21 22 }