1 package com.loribel.commons.abstraction;
2
3 import org.w3c.dom.*;
4
5 /***
6 * Interface to update object that accept Node to populate these values.
7 *
8 * @author Grégory Borelli
9 * @version 2003/11/19 - 16:16:56 - gen 7.12
10 */
11 public interface GB_NodeUpdatable
12 {
13
14 /***
15 * Initialize values of an object from the values of a node.
16 *
17 * @param a_node Node - the node that contains values to initialize this object
18 * (null not allowed)
19 */
20 void updateWithNodeValues(
21 Node a_node);
22
23 }