Searched refs:inscope (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/xml/
H A DStAXSource.java228 * @param inscope inscope Namespaces
234 public StAXSource(XMLStreamReader reader, boolean eagerQuit, @NotNull String[] inscope) { argument
245 this.reader = new XMLStreamReaderToContentHandler(reader,repeater,eagerQuit,false,inscope);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/stax/
H A DStreamWriterBufferProcessor.java105 * Any inscope namespaces present will be written as namespace
170 * Any inscope namespaces present will be written as namespace
405 * @param inscope: true means write inscope namespaces
407 private void writeAttributes(XMLStreamWriter writer, boolean inscope) throws XMLStreamException { argument
408 // prefixSet to collect prefixes that are written before writing inscope namespaces
409 Set<String> prefixSet = inscope ? new HashSet<String>() : Collections.<String>emptySet();
414 item = writeNamespaceAttributes(item, writer, inscope, prefixSet);
416 if (inscope) {
H A DStreamReaderBufferProcessor.java170 Map<String,String> inscope = new HashMap<String, String>(_namespaceAIIsEnd);
173 inscope.put(_namespaceAIIsPrefix[i],_namespaceAIIsNamespaceName[i]);
175 XMLStreamBufferMark mark = new XMLStreamBufferMark(inscope, this);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/stream/
H A DStreamMessage.java202 * There is no way to enumerate inscope namespaces for XMLStreamReader. That means
221 List<String> inscope = new ArrayList<String>();
224 inscope.add(prefix);
225 inscope.add(nss.getURI(prefix));
227 return inscope.toArray(new String[inscope.size()]);
384 // preserving inscope namespaces from envelope, and body. Other option

Completed in 3790 milliseconds