1 package com.loribel.commons.abstraction; 2 3 /*** 4 * Generic Abstraction of a component witch own text. 5 * 6 * @author Grégory Borelli 7 */ 8 public interface GB_TextSelectedOwner 9 extends 10 GB_TextOwner 11 { 12 void replaceSelectedText( 13 String s); 14 15 String getSelectedText(); 16 17 }