Searched defs:targetNamespace (Results 1 - 23 of 23) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/schemagen/xmlschema/
H A DSchema.java45 public Schema targetNamespace(String value); method in interface:Schema
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/document/
H A DDefinitions.java46 public com.sun.xml.internal.ws.wsdl.writer.document.Definitions targetNamespace(String value); method in interface:Definitions
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/parser/
H A DSchemaDocument.java61 * More precisely, this method simply returns the <tt>targetNamespace</tt> attribute
105 * @param targetNamespace
112 Set<SchemaDocument> getImportedDocuments(String targetNamespace); argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/
H A DSchemaDVFactory.java109 * @param targetNamespace target namespace of the new type, could be null
115 public abstract XSSimpleType createTypeRestriction(String name, String targetNamespace, argument
124 * @param targetNamespace target namespace of the new type, could be null
130 public abstract XSSimpleType createTypeList(String name, String targetNamespace, argument
139 * @param targetNamespace target namespace of the new type, could be null
145 public abstract XSSimpleType createTypeUnion(String name, String targetNamespace, argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DBaseDVFactory.java80 * @param targetNamespace target namespace of the new type, could be null
86 public XSSimpleType createTypeRestriction(String name, String targetNamespace, argument
88 return new XSSimpleTypeDecl((XSSimpleTypeDecl)base, name, targetNamespace, finalSet, false, annotations);
96 * @param targetNamespace target namespace of the new type, could be null
102 public XSSimpleType createTypeList(String name, String targetNamespace, argument
105 return new XSSimpleTypeDecl(name, targetNamespace, finalSet, (XSSimpleTypeDecl)itemType, false, annotations);
113 * @param targetNamespace target namespace of the new type, could be null
119 public XSSimpleType createTypeUnion(String name, String targetNamespace, argument
126 return new XSSimpleTypeDecl(name, targetNamespace, finalSet, mtypes, annotations);
H A DBaseSchemaDVFactory.java259 * @param targetNamespace target namespace of the new type, could be null
265 public XSSimpleType createTypeRestriction(String name, String targetNamespace, argument
270 return st.setRestrictionValues((XSSimpleTypeDecl)base, name, targetNamespace, finalSet, annotations);
272 return new XSSimpleTypeDecl((XSSimpleTypeDecl)base, name, targetNamespace, finalSet, false, annotations);
280 * @param targetNamespace target namespace of the new type, could be null
286 public XSSimpleType createTypeList(String name, String targetNamespace, argument
291 return st.setListValues(name, targetNamespace, finalSet, (XSSimpleTypeDecl)itemType, annotations);
293 return new XSSimpleTypeDecl(name, targetNamespace, finalSet, (XSSimpleTypeDecl)itemType, false, annotations);
301 * @param targetNamespace target namespace of the new type, could be null
307 public XSSimpleType createTypeUnion(String name, String targetNamespace, argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DDeclarationImpl.java40 this.targetNamespace = _targetNamespace;
48 private final String targetNamespace; field in class:DeclarationImpl
49 public String getTargetNamespace() { return targetNamespace; }
H A DSchemaImpl.java63 this.targetNamespace = tns;
78 private final String targetNamespace; field in class:SchemaImpl
80 return targetNamespace;
H A DSchemaSetImpl.java81 public SchemaImpl createSchema(String targetNamespace, Locator location) { argument
82 SchemaImpl obj = (SchemaImpl)schemas.get(targetNamespace);
84 obj = new SchemaImpl(this, location, targetNamespace);
85 schemas.put(targetNamespace, obj);
94 public XSSchema getSchema(String targetNamespace) { argument
95 return schemas.get(targetNamespace);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/
H A DSchemaDocumentImpl.java84 public Set<SchemaDocument> getImportedDocuments(String targetNamespace) { argument
85 if(targetNamespace==null)
89 if(doc.getTargetNamespace().equals(targetNamespace))
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/
H A DWSDLPatcher.java62 private String targetNamespace; field in class:WSDLPatcher
147 String value = in.getAttributeValue(null,"targetNamespace");
149 targetNamespace = value;
154 serviceName = new QName(targetNamespace, value);
159 portName = new QName(targetNamespace,value);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/
H A DXSSchemaSet.java40 XSSchema getSchema(String targetNamespace); argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSAttributeDecl.java74 public void setValues(String name, String targetNamespace, argument
79 fTargetNamespace = targetNamespace;
H A DXSDDescription.java224 public void setTargetNamespace(String targetNamespace){ argument
225 fNamespace = targetNamespace ;
H A DXSComplexTypeDecl.java101 public void setValues(String name, String targetNamespace, argument
107 fTargetNamespace = targetNamespace;
H A DSchemaGrammar.java113 // annotations associated with the "root" schema of this targetNamespace
138 * @param targetNamespace
143 public SchemaGrammar(String targetNamespace, XSDDescription grammarDesc, argument
145 fTargetNamespace = targetNamespace;
207 // Annotations associated with the "root" schema of this targetNamespace
1187 public void setValues(String name, String targetNamespace, argument
1275 public void setValues(String name, String targetNamespace, argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/
H A DModel.java60 return targetNamespace;
64 targetNamespace = s;
152 private String targetNamespace; field in class:Model
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DClassSelector.java441 public JPackage getPackage(String targetNamespace) { argument
442 XSSchema s = Ring.get(XSSchemaSet.class).getSchema(targetNamespace);
462 // generate the package name from the targetNamespace
464 name = builder.getNameConverter().toPackageName( targetNamespace );
480 Messages.ERR_INCORRECT_PACKAGE_NAME, targetNamespace, name );
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DSDDocumentImpl.java314 private final String targetNamespace; field in class:SDDocumentImpl.SchemaImpl
316 public SchemaImpl(QName rootName, URL url, SDDocumentSource source, String targetNamespace, argument
319 this.targetNamespace = targetNamespace;
323 return targetNamespace;
333 private final String targetNamespace; field in class:SDDocumentImpl.WSDLImpl
338 public WSDLImpl(QName rootName, URL url, SDDocumentSource source, String targetNamespace, boolean hasPortType, argument
341 this.targetNamespace = targetNamespace;
348 return targetNamespace;
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/
H A DAbstractSEIModelImpl.java141 //jaxbContext = JAXBRIContext.newInstance(cls, types, targetNamespace, false);
371 * This is the targetNamespace for the WSDL containing the PortType
375 targetNamespace = namespace;
379 * This is the targetNamespace for the WSDL containing the PortType
383 return targetNamespace;
422 private String targetNamespace = ""; field in class:AbstractSEIModelImpl
H A DRuntimeModeler.java87 private String targetNamespace; field in class:RuntimeModeler
291 return WrapperBeanGenerator.createExceptionBean(className, exception, targetNamespace, name, namespace, loader);
302 targetNamespace = webService.targetNamespace();
306 if (targetNamespace.length() == 0) {
307 targetNamespace = getNamespace(packageName);
309 model.setTargetNamespace(targetNamespace);
310 QName portTypeName = new QName(targetNamespace, portTypeLocalName);
521 WSDLBoundOperationImpl bo = binding.getBinding().get(new QName(targetNamespace, operationName));
623 String reqNamespace = targetNamespace;
1336 getPortName(Class<?> implClass, String targetNamespace) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/parser/
H A DRuntimeWSDLParser.java89 private String targetNamespace; field in class:RuntimeWSDLParser
323 //get the targetNamespace of the service
326 final String oldTargetNamespace = targetNamespace;
327 targetNamespace = tns;
349 targetNamespace = oldTargetNamespace;
357 WSDLServiceImpl service = new WSDLServiceImpl(reader,wsdlDoc,new QName(targetNamespace, serviceName));
438 WSDLBoundPortTypeImpl binding = new WSDLBoundPortTypeImpl(reader,wsdlDoc, new QName(targetNamespace, bindingName),
691 WSDLPortTypeImpl portType = new WSDLPortTypeImpl(reader,wsdlDoc, new QName(targetNamespace, portTypeName));
776 WSDLMessageImpl msg = new WSDLMessageImpl(reader,new QName(targetNamespace, msgName));
/openjdk7/langtools/test/tools/javac/T5090006/
H A Dbroken.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/framework/ junit/framework/Assert.class Assert. ...

Completed in 128 milliseconds