View Javadoc

1   package org.dom4j.persistence;
2   
3   import org.dom4j.Node;
4   
5   /***
6    * @author
7    * @version 1.0
8    */
9   
10  public interface MarshallingStrategy {
11  
12    public void marshal(String systemId, Node aNode) throws Exception;
13    public Node unmarshal(String aSystemId);
14    public void setContext(MarshallingContext aContext);
15  }