1 12 13 package org.w3c.dom.ls; 14 15 import org.w3c.dom.DOMException ; 16 17 32 public interface DOMImplementationLS { 33 37 public static final short MODE_SYNCHRONOUS = 1; 38 41 public static final short MODE_ASYNCHRONOUS = 2; 42 43 84 public LSParser createLSParser(short mode, 85 String schemaType) 86 throws DOMException ; 87 88 100 public LSSerializer createLSSerializer(); 101 102 111 public LSInput createLSInput(); 112 113 120 public LSOutput createLSOutput(); 121 122 } 123 | Popular Tags |