1 package com.loribel.commons.abstraction; 2 3 /*** 4 * Interface for Object that contains {@link GB_ViewManager}. 5 * 6 * @author Grégory Borelli 7 */ 8 public interface GB_ViewManagerOwner 9 { 10 /*** 11 * Returns the view manager that this object contains. 12 * 13 * @return GB_ViewManager 14 */ 15 GB_ViewManager getViewManager(); 16 17 }