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