<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/3.0.10">
</HEAD>
<BODY>
We do something very similar to this using a pattern based on the standard JavaBean property change listener mechanism. We found that we had to:<BR>
<BR>
<UL>
    <LI>specialize all the JDOM &quot;node&quot; types that we use in our documents (Document, Element, Attribute, Text and CDATA)
    <LI>have our own specialist JDOMFactory to create our node types
    <LI>make sure that those methods that explicitly create these JDOM classes in these node types are overridden to create our ones
    <LI>add the same listener management and fireEvent code to each specialization (instead of property names we have a type safe enumeration that identifies the type of change, e.g. name change, creation, deletion, attribute value change etc.). NB: we used a standard interface for the listener management aspects, see below.
    <LI>make sure that we augment the various methods in the JDOM classes that modify the DOM in ways we are interested in (mapping to our type of change enumeration) to call fireEvent in the appropriate places.
</UL>
<BR>
The main difference (other than not having property names) between this an the property change listener model is that a notification propagates up the hierarchy, so for example, assuming a document exists with a root element thus:<BR>
<BR>
JDOMFactory factory = new OurFactory();<BR>
Document d = factory.document();<BR>
Element e = factory.element();<BR>
document.setRootElement(e);<BR>
<BR>
A call to add an attribute &quot;a&quot; to the element:<BR>
<BR>
e.setAttribute(&quot;a&quot;, &quot;value&quot;);<BR>
<BR>
would notify a listener on &quot;e&quot; of the creation of the attribute &quot;a&quot;, then notify a listener on &quot;e&quot;'s parent of the creation of the attribute and so on up the hierarchy to the document itself.<BR>
<BR>
NB: We specifically changed the behaviour of Element.setAttribute to update the attribute if it already exists rather than always creating the attribute (which is what JDOM does - at least in 0.9 which is what we use).<BR>
<BR>
Adding listeners clearly requires casting the JDOM nodes to something we can access - we made all our specialist node types implement a common interface that provides the listener management.<BR>
<BR>
Because we have our own factory it is possible to use the normal JDOM builder to build a JDOM with instances our classes.<BR>
<BR>
Anyway, this isn't a simple 1 day job, so only do it if you really need to!<BR>
<BR>
Good luck!<BR>
<BR>
Phil :n.<BR>
<BR>
On Tue, 2004-07-06 at 14:06, Daniel Perry wrote:
<BLOCKQUOTE TYPE=CITE>
<PRE><FONT COLOR="#737373"><I>I've been searching through the mailing lists for info on adding Listeners
to monitor changes in documents, etc.

So far i've figureed out that these listeners dont exist, and every
proposal/idea that i've come accross in the lists are concerned with events
at the element level.

I am trying to work out how to do it at the document level.

I'm using jdom to work with config files and data files. In a current
project i need to save these files when they are changed.  I would rather
somthing at a core level does this through a listener rather than call a
method after changing anything.

ie at the moment i am doing:

_someElement.setText(&quot;newValue&quot;);
// somehow get a reference to an xmlHandler class that is responsible for
this document, then...
xmlHandler.save();

I would rather do:

_someElement.setText(&quot;newValue&quot;);

and have the Document the element belongs to fire off an event through a
listener.

Does anyone have any suggestions on how i can do this?

As far as i can see, i would have to extend element and add a reference to
it's document.  I would have to also override any methods that change
content to fire off an event through the document.  I would have to extend
document to add the listener methods.  I would then have extend saxbuilder
and make it use these new types.

Is there an easier way to do this?

Thanks,

Daniel.

_______________________________________________
To control your jdom-interest membership:</FONT>
<A HREF="http://lists.denveronline.net/mailman/options/jdom-interest/youraddr@yourhost.com"><U>http://lists.denveronline.net/mailman/options/jdom-interest/youraddr@yourhost.com</U></I></A></PRE>
</BLOCKQUOTE>
<PRE><TABLE CELLSPACING="0" CELLPADDING="0" WIDTH="100%">
<TR>
<TD>
-- <BR>
Phil Weighill-Smith &lt;<A HREF="mailto:phil.weighill-smith@volantis.com"><U>phil.weighill-smith@volantis.com</U></A>&gt;<BR>
Volantis Systems
</TD>
</TR>
</TABLE>
</PRE>
</BODY>
</HTML>