Searched defs:tns (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/
H A DWsaActionUtil.java40 String tns = method.getOwner().getTargetNamespace();
41 String delim = getDelimiter(tns);
42 if (tns.endsWith(delim))
43 tns = tns.substring(0, tns.length() - 1);
48 return new StringBuilder(tns).append(delim).append(
53 private static final String getDelimiter(String tns) { argument
57 URI uri = new URI(tns);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/
H A DW3CAddressingMetadataWSDLGeneratorExtension.java84 String tns = method.getOwner().getTargetNamespace();
85 String delim = getDelimiter(tns);
86 if (tns.endsWith(delim))
87 tns = tns.substring(0, tns.length() - 1);
94 return new StringBuilder(tns).append(delim).append(
107 String tns = method.getOwner().getTargetNamespace();
108 String delim = getDelimiter(tns);
109 if (tns
122 getDelimiter(String tns) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/pipe/
H A DAbstractSchemaValidationTube.java288 private void updateMultiSchemaForTns(String tns, String systemId, Map<String, List<String>> schemas) { argument
289 List<String> docIdList = schemas.get(tns);
292 schemas.put(tns, docIdList);
315 // Consolidates all the schemas(inlined and external) for a tns
316 // tns --> list of systemId
330 String tns = getTargetNamespace(src);
331 updateMultiSchemaForTns(tns, src.getSystemId(), multiSchemaForTns);
345 // If there are multiple schema fragments for the same tns, create a
346 // pseudo schema for that tns by using <xsd:include> of those.
347 // tns
452 createSameTnsPseudoSchema(String tns, Collection<String> docs, String pseudoSystemId) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/state/
H A DSchema.java157 String tns = test.getValue("targetNamespace");
161 if(tns==null) tns=""; // if not present, then the empty namespace
162 $runtime.currentSchema = $runtime.parser.schemaSet.createSchema(tns,$runtime.copyLocator());
163 if(expectedNamespace!=null && !expectedNamespace.equals(tns)) {
165 Messages.format("UnexpectedTargetnamespace.Import", tns, expectedNamespace, tns ),
173 if(tns!=null && expectedNamespace!=null && !expectedNamespace.equals(tns)) {
175 Messages.format("UnexpectedTargetnamespace.Include", tns, expectedNamespac
1312 private String tns=null; // it defaults to the no namespace. field in class:Schema
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DSchemaImpl.java59 public SchemaImpl(SchemaSetImpl _parent, Locator loc, String tns) { argument
60 if (tns == null)
63 this.targetNamespace = tns;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DSchemaGrammar.java362 String tns = null;
368 tns = SchemaSymbols.URI_XSI;
370 fGlobalAttrDecls.put(name, new BuiltinAttrDecl(name, tns, type, scope));
374 tns = SchemaSymbols.URI_XSI;
376 fGlobalAttrDecls.put(name, new BuiltinAttrDecl(name, tns, type, scope));
382 tns = SchemaSymbols.URI_XSI;
387 fGlobalAttrDecls.put(name, new BuiltinAttrDecl(name, tns, type, scope));
391 tns = SchemaSymbols.URI_XSI;
393 fGlobalAttrDecls.put(name, new BuiltinAttrDecl(name, tns, type, scope));
1267 public BuiltinAttrDecl(String name, String tns, argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSDHandler.java645 String tns = (String)fAllTNSs.elementAt(i);
647 Vector ins = (Vector)fImportMap.get(tns);
649 SchemaGrammar sg = fGrammarBucket.getGrammar(emptyString2Null(tns));
715 SchemaGrammar getGrammar(String tns) { argument
716 return fGrammarBucket.getGrammar(tns);
957 String tns = null2EmptyString(currSchemaInfo.fTargetNamespace);
959 Vector ins = (Vector)fImportMap.get(tns);
963 fAllTNSs.addElement(tns);
965 fImportMap.put(tns, ins);
4204 final String tns
[all...]

Completed in 65 milliseconds