Searched refs:schema (Results 101 - 125 of 137) sorted by relevance

123456

/openjdk10/jaxp/test/javax/xml/jaxp/functional/test/auctionportal/
H A DAuctionController.java213 * Check validation API features. A schema which is including in Bug 4909119
230 Schema schema = schemaFactory.newSchema(Paths.get(schemaFile).toFile());
232 Validator validator = schema.newValidator();
266 Schema schema = schemaFactory.newSchema(new File(((xsdFile))));
269 Validator validator = schema.newValidator();
H A DUserController.java69 * it without having a schema source or a schema location It must throw a
120 // Copy schema for outputfile
194 * into an XML file which is validated by the schema This covers Row 5
215 // Set schema after parsing userInfo.xml. Otherwise it will conflict
243 * Checking for Row 8 from the schema table when setting the schemaSource
251 String schema = "http://java.sun.com/xml/jaxp/properties/schemaSource";
257 dbf.setAttribute(schema, schemaValue);
/openjdk10/jaxws/src/java.xml.bind/share/classes/javax/xml/bind/
H A DUnmarshaller.java197 * the root element corresponds to a local element declaration in the schema.
285 * <xs:schema>
297 * </xs:schema>
307 * // local element declaration in schema.
322 * require the client application to specify the SAX2.0 parser at schema compile
340 * than in JAXB 1.0. When schema-derived code generated
959 * @param schema Schema object to validate unmarshal operations against or null to disable validation
965 public void setSchema( javax.xml.validation.Schema schema );
/openjdk10/jaxp/test/javax/xml/jaxp/unittest/validation/
H A DValidatorTest.java175 Schema schema = sf.newSchema(new File(ValidatorTest.class.getResource(xsdFile).toURI()));
179 Validator validator = schema.newValidator();
H A DBug6467424Test.java70 Schema schema = factory.newSchema(schemaLocation);
71 Validator validator = schema.newValidator();
130 domFactory.setFeature("http://apache.org/xml/features/validation/schema", true);
131 domFactory.setFeature("http://apache.org/xml/features/validation/schema/element-default", true);
175 domFactory.setFeature("http://apache.org/xml/features/validation/schema", true);
176 domFactory.setFeature("http://apache.org/xml/features/validation/schema/element-default", false);
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/internalizer/
H A DSCDBasedBindingSet.java66 * Represents the target schema component of the
115 * Adds a new binding declaration to be associated to the schema component
123 * Applies bindings to the schema component for this and its siblings.
131 * Applies bindings to the schema component for just this node.
217 public void apply(XSSchemaSet schema, ErrorReceiver errorReceiver) { argument
226 topLevel.applyAll(schema.getSchemas());
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/runtime/
H A DMarshallerImpl.java123 private Schema schema; field in class:MarshallerImpl
287 if( schema!=null ) {
289 ValidatorHandler validator = schema.newValidatorHandler();
601 return schema;
606 this.schema = s;
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DBGMBuilder.java122 * all the schema customizations.
178 // promote any global bindings in the schema
311 private void checkMultipleSchemaBindings( XSSchema schema ) {
314 BindInfo bi = getBindInfo(schema);
324 schema.getTargetNamespace() );
334 private void populate( Map<String,? extends XSComponent> col, XSSchema schema ) {
337 cs.bindToType(sc,schema);
345 // look for the schema-wide customization
364 * Gets or creates the BindInfo object associated to a schema component.
392 * Gets the BindInfo object associated to a schema componen
[all...]
H A DDefaultClassBinder.java356 public CClassInfo schema(XSSchema schema) { argument
454 // would have been bound, from the schema.
520 // add extra blank lines so that the schema fragment
538 * Derives a name from a schema component.
539 * Use the name of the schema component as the default name.
546 * Derives a name from a schema component.
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/util/pipe/
H A DAbstractSchemaValidationTube.java78 * {@link Tube} that does the schema validation.
160 void addSchema(Source schema) { argument
161 assert schema.getSystemId() != null;
163 String systemId = schema.getSystemId();
165 XMLStreamBufferResult xsbr = XmlUtil.identityTransform(schema, new XMLStreamBufferResult());
325 * "If you're synthesizing schema documents to glue together the ones in
327 * Create a schema document for each namespace with <xs:include>s
328 * (for each schema document in the WSDL with that target namespace)
330 * namespaces in a "master" schema document.
332 * That should work with any schema processo
[all...]
/openjdk10/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wsdl/parser/
H A DWSDLInternalizationLogic.java30 import com.sun.tools.internal.ws.wsdl.document.schema.SchemaConstants;
55 // //TODO: add support for importing schema using wsdl:import
60 // We don't need to do this anymore, JAXB handles the schema imports, includes etc., but this is useful for the clientJar option in
H A DSOAPEntityReferenceValidator.java28 import com.sun.tools.internal.ws.wsdl.document.schema.SchemaConstants;
29 import com.sun.tools.internal.ws.wsdl.document.schema.SchemaKinds;
/openjdk10/jdk/src/java.sql/share/classes/java/sql/
H A DConnection.java1308 * Sets the given schema name to access.
1320 * @param schema the name of a schema in which to work
1326 void setSchema(String schema) throws SQLException; argument
1329 * Retrieves this <code>Connection</code> object's current schema name.
1331 * @return the current schema name or <code>null</code> if there is none
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/xmlschema/bindinfo/
H A DBIProperty.java82 * This customization turns an arbitrary schema component
333 * Source schema component from which a field is built.
524 // this is so that the schema like:
539 // this is so that the schema like:
571 // this value is not allowed if the schema component doesn't have
602 public Boolean schema(XSSchema s) {
645 * customization. This schema component is nonetheless considered
690 public XSComponent schema(XSSchema schema) {
695 // delegates to the context schema objec
[all...]
H A DBIGlobalBinding.java410 public void dispatchGlobalConversions( XSSchemaSet schema ) {
417 XSSimpleType st = schema.getSimpleType(name.getNamespaceURI(),name.getLocalPart());
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/xsom/impl/
H A DSchemaImpl.java102 // it's difficult to determine the source location for the schema
103 // component as one schema can be defined across multiple files.
105 // where the schema is defined.
258 visitor.schema(this);
262 return function.schema(this);
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/addon/episode/
H A DPluginImpl.java101 * Capture all the generated classes from global schema components
163 // generate listing per schema
171 group.scd("x-schema::"+(tns.equals("")?"":"tns"));
238 public String schema(XSSchema schema) {
/openjdk10/jaxws/src/java.xml.bind/share/classes/javax/xml/bind/helpers/
H A DAbstractMarshallerImpl.java458 public void setSchema(Schema schema) { argument
H A DAbstractUnmarshallerImpl.java388 public void setSchema(Schema schema) { argument
/openjdk10/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wsdl/document/schema/
H A DSchemaConstants.java26 package com.sun.tools.internal.ws.wsdl.document.schema;
75 static final QName QNAME_SCHEMA = new QName(NS_XSD, "schema");
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/xsom/impl/util/
H A DSchemaTreeTraverser.java74 * Generates approximated tree model for XML from a schema component. This is
80 * function on your schema set.</li>
102 * Tree model for schema hierarchy tree.
133 * The node of the schema hierarchy tree.
139 * File name of the corresponding schema artifact.
144 * Line number of the corresponding schema artifact.
187 * @return Returns the file name of the corresponding schema artifact.
194 * @param fileName The file name of the corresponding schema artifact to
202 * @return Returns the line number of the corresponding schema
210 * @param lineNumber The line number of the corresponding schema
388 public void schema(XSSchema s) { method in class:SchemaTreeTraverser
[all...]
/openjdk10/jdk/test/java/sql/modules/mystubdriver/com/luckydogtennis/
H A DStubConnection.java282 public void setSchema(String schema) throws SQLException { argument
/openjdk10/jdk/test/java/sql/modules/luckydogdriver/luckydogtennis/
H A DStubConnection.java282 public void setSchema(String schema) throws SQLException { argument
/openjdk10/jdk/test/java/sql/testng/util/
H A DStubConnection.java282 public void setSchema(String schema) throws SQLException { argument
/openjdk10/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wscompile/
H A DWsgenTool.java348 ReportOutput.Schema s = report.schema();
389 Schema schema(); method in interface:WsgenTool.ReportOutput.Report

Completed in 285 milliseconds

123456