1 package com.loribel.commons.abstraction; 2 3 import org.w3c.dom.*; 4 5 /*** 6 * Interface for Object 7 * 8 * @author Grégory Borelli 9 */ 10 public interface GB_GuiConfigurable 11 extends 12 GB_ViewManagerOwner 13 { 14 15 /*** 16 * Returns true if enabled. 17 */ 18 Element getConfigNode(); 19 20 void setConfigNode( 21 Element a_element); 22 23 }