1 package com.loribel.commons.abstraction;
2
3 /***
4 * Prototype to create a ViewManager.
5 *
6 * @author Grégory Borelli
7 */
8 public interface GB_VMPrototype
9 {
10
11 /***
12 * Return a View Manager to represent and manage the model
13 * <tt>a_model</tt>.
14 *
15 * @param a_model Object - object model to the viewManager
16 *
17 * @return GB_ViewManager
18 */
19 GB_ViewManager newViewManager(
20 Object a_model,
21 boolean a_useTitle);
22
23 }