001package org.dom4j.persistence;
002
003import org.dom4j.Node;
004
005/**
006 * @author
007 * @version 1.0
008 */
009
010public interface MarshallingStrategy {
011
012  public void marshal(String systemId, Node aNode) throws Exception;
013  public Node unmarshal(String aSystemId);
014  public void setContext(MarshallingContext aContext);
015}