1 16 17 18 package org.apache.xml.serialize; 19 20 21 import java.io.IOException ; 22 import org.w3c.dom.Element ; 23 import org.w3c.dom.Document ; 24 import org.w3c.dom.DocumentFragment ; 25 26 27 28 36 public interface DOMSerializer 37 { 38 39 40 48 public void serialize( Element elem ) 49 throws IOException ; 50 51 52 60 public void serialize( Document doc ) 61 throws IOException ; 62 63 64 72 public void serialize( DocumentFragment frag ) 73 throws IOException ; 74 75 76 } 77 78 79 80 | Popular Tags |