1 29 30 package com.caucho.xml.stream; 31 import javax.xml.namespace.NamespaceContext ; 32 import javax.xml.namespace.QName ; 33 import javax.xml.stream.Location; 34 import javax.xml.stream.XMLEventFactory; 35 import javax.xml.stream.events.*; 36 import java.util.Iterator ; 37 38 public class XMLEventFactoryImpl extends XMLEventFactory { 39 40 protected XMLEventFactoryImpl() 41 { 42 } 43 44 public Attribute createAttribute(QName name, String value) 45 { 46 throw new UnsupportedOperationException (); 47 } 48 49 public Attribute createAttribute(String localName, String value) 50 { 51 throw new UnsupportedOperationException (); 52 } 53 54 public Attribute createAttribute(String prefix, String namespaceURI, 55 String localName, String value) 56 { 57 throw new UnsupportedOperationException (); 58 } 59 60 public Characters createCData(String content) 61 { 62 throw new UnsupportedOperationException (); 63 } 64 65 public Characters createCharacters(String content) 66 { 67 throw new UnsupportedOperationException (); 68 } 69 70 public Comment createComment(String text) 71 { 72 throw new UnsupportedOperationException (); 73 } 74 75 public DTD createDTD(String dtd) 76 { 77 throw new UnsupportedOperationException (); 78 } 79 80 public EndDocument createEndDocument() 81 { 82 throw new UnsupportedOperationException (); 83 } 84 85 public EndElement createEndElement(QName name, Iterator namespaces) 86 { 87 throw new UnsupportedOperationException (); 88 } 89 90 public EndElement createEndElement(String prefix, 91 String namespaceUri, 92 String localName) 93 { 94 throw new UnsupportedOperationException (); 95 } 96 97 public EndElement createEndElement(String prefix, 98 String namespaceUri, 99 String localName, 100 Iterator namespaces) 101 { 102 throw new UnsupportedOperationException (); 103 } 104 105 public EntityReference 106 createEntityReference(String name, EntityDeclaration declaration) 107 { 108 throw new UnsupportedOperationException (); 109 } 110 111 public Characters createIgnorableSpace(String content) 112 { 113 throw new UnsupportedOperationException (); 114 } 115 116 public Namespace createNamespace(String namespaceURI) 117 { 118 throw new UnsupportedOperationException (); 119 } 120 121 public Namespace createNamespace(String prefix, String namespaceUri) 122 { 123 throw new UnsupportedOperationException (); 124 } 125 126 public ProcessingInstruction 127 createProcessingInstruction(String target, String data) 128 { 129 throw new UnsupportedOperationException (); 130 } 131 132 public Characters createSpace(String content) 133 { 134 throw new UnsupportedOperationException (); 135 } 136 137 public StartDocument createStartDocument() 138 { 139 throw new UnsupportedOperationException (); 140 } 141 142 public StartDocument createStartDocument(String encoding) 143 { 144 throw new UnsupportedOperationException (); 145 } 146 147 public StartDocument createStartDocument(String encoding, 148 String version) 149 { 150 throw new UnsupportedOperationException (); 151 } 152 153 public StartDocument createStartDocument(String encoding, 154 String version, 155 boolean standalone) 156 { 157 throw new UnsupportedOperationException (); 158 } 159 160 public StartElement createStartElement(QName name, 161 Iterator attributes, 162 Iterator namespaces) 163 { 164 throw new UnsupportedOperationException (); 165 } 166 167 public StartElement createStartElement(String prefix, 168 String namespaceUri, 169 String localName) 170 { 171 throw new UnsupportedOperationException (); 172 } 173 174 public StartElement createStartElement(String prefix, 175 String namespaceUri, 176 String localName, 177 Iterator attributes, 178 Iterator namespaces) 179 { 180 throw new UnsupportedOperationException (); 181 } 182 183 public StartElement createStartElement(String prefix, 184 String namespaceUri, 185 String localName, 186 Iterator attributes, 187 Iterator namespaces, 188 NamespaceContext context) 189 { 190 throw new UnsupportedOperationException (); 191 } 192 193 public void setLocation(Location location) 194 { 195 throw new UnsupportedOperationException (); 196 } 197 198 } 199 200 | Popular Tags |