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