1 package com.loribel.commons.abstraction; 2 3 import javax.swing.*; 4 5 /*** 6 * Interface for Object that contains View. 7 * 8 * @author Grégory Borelli 9 */ 10 public interface GB_ViewOwner 11 { 12 /*** 13 * Method getView. 14 * 15 * @return GB_View 16 */ 17 JComponent getView(); 18 19 }