1 package org.enhydra.jawe.xml; 2 3 import java.util.EventListener; 4 5 /** 6 * Interface that must be implemented in order to listen to the changes 7 * on element that is edited by the XMLElementDialog. 8 */ 9 public interface XMLElementChangeListener extends EventListener { 10 public void xmlElementChanged (XMLElement changedElement); 11 } 12