1 58 59 60 package org.openlaszlo.iv.flash.xml.apache; 61 62 import javax.xml.parsers.DocumentBuilderFactory ; 63 import javax.xml.parsers.DocumentBuilder ; 64 import javax.xml.parsers.ParserConfigurationException ; 65 66 70 public class DocumentBuilderFactoryImpl extends DocumentBuilderFactory { 71 72 public DocumentBuilderFactoryImpl() { 73 } 74 75 78 public DocumentBuilder newDocumentBuilder() throws ParserConfigurationException { 79 return new DocumentBuilderImpl(this); 80 } 81 82 86 public void setAttribute(String name, Object value) throws IllegalArgumentException { 87 throw new IllegalArgumentException ("No attributes are implemented"); 88 } 89 90 94 public Object getAttribute(String name) throws IllegalArgumentException { 95 throw new IllegalArgumentException ("No attributes are implemented"); 96 } 97 } 98 | Popular Tags |