1 package com.loribel.commons.abstraction; 2 3 import org.w3c.dom.*; 4 5 /*** 6 * Generic Abstraction of a component witch own XML node as config. 7 * 8 * @author Grégory Borelli 9 */ 10 public interface GB_NodeConfigOwner 11 { 12 /*** 13 * Returns the XML Node of the config. 14 */ 15 Element getConfigNode(); 16 17 }