1 12 13 package org.w3c.dom.ls; 14 15 import org.w3c.dom.DOMConfiguration ; 16 import org.w3c.dom.Node ; 17 import org.w3c.dom.DOMException ; 18 19 179 public interface LSSerializer { 180 280 public DOMConfiguration getDomConfig(); 281 282 302 public String getNewLine(); 303 323 public void setNewLine(String newLine); 324 325 335 public LSSerializerFilter getFilter(); 336 346 public void setFilter(LSSerializerFilter filter); 347 348 389 public boolean write(Node nodeArg, 390 LSOutput destination) 391 throws LSException ; 392 393 411 public boolean writeToURI(Node nodeArg, 412 String uri) 413 throws LSException ; 414 415 433 public String writeToString(Node nodeArg) 434 throws DOMException , LSException ; 435 436 } 437 | Popular Tags |