1 package com.loribel.commons.business.abstraction; 2 3 /*** 4 * Abstraction. 5 * 6 * @author Gregory Borelli 7 */ 8 public interface GB_BOLineEditorFactory 9 { 10 GB_BOLineEditor newEditor( 11 GB_BOProperty a_property); 12 13 GB_BOLineEditorPrototype getPrototype( 14 String a_editorName); 15 16 void addPrototype( 17 String a_editorName, 18 GB_BOLineEditorPrototype a_prototype); 19 }