HomeSort by relevance Sort by last modified time
    Searched refs:Schema (Results 1 - 17 of 17) sorted by null

  /dalvik/libcore/xml/src/main/java/javax/xml/validation/
Schema.java 18 // $Id: Schema.java 446598 2006-09-15 12:55:40Z jeremias $
30 * A {@link Schema} object is thread safe and applications are
34 * A {@link Schema} object is immutable in the sense that it shouldn't
37 * {@link Schema}, it must always produce the same result.
40 * A {@link Schema} object is usually created from {@link SchemaFactory}.
43 * Two kinds of validators can be created from a {@link Schema} object.
52 * In other words, if you parse the same schema twice, you may
57 * @see <a href="http://www.w3.org/TR/xmlschema-1/">XML Schema Part 1: Structures</a>
62 public abstract class Schema {
70 protected Schema() {
    [all...]
SchemaFactory.java 35 * Factory that creates {@link Schema} objects&#x2E; Entry-point to
39 * {@link SchemaFactory} is a schema compiler. It reads external
55 * <h2><a name="schemaLanguage"></a>Schema Language</h2>
57 * This spec uses a namespace URI to designate a schema language.
61 * is only required to support W3C XML Schema 1.0. However,
62 * if it chooses to support other schema languages listed here,
66 * Schema languages not listed here are expected to
69 * implementations for other schema languages at run-time.
91 * <td><a href="http://www.w3.org/TR/xmlschema-1">W3C XML Schema 1.0</a></td>
120 * schema language and return it.</p
    [all...]
  /dalvik/libcore/xml/src/main/java/javax/xml/parsers/
DocumentBuilderFactory.java 24 import javax.xml.validation.Schema;
127 * To use modern schema languages such as W3C XML Schema or
130 * method <tt>false</tt>, then use the {@link #setSchema(Schema)}
131 * method to associate a schema to a parser.
315 * Examples include entity expansion limits and XML Schema constructs that would consume large amounts of resources.
358 * Gets the {@link Schema} object specified through
359 * the {@link #setSchema(Schema schema)} method.
368 * the {@link Schema} object that was last set throug
    [all...]
SAXParserFactory.java 22 import javax.xml.validation.Schema;
141 * To use modern schema languages such as W3C XML Schema or
144 * method <tt>false</tt>, then use the {@link #setSchema(Schema)}
145 * method to associate a schema to a parser.
192 * Examples include entity expansion limits and XML Schema constructs that would consume large amounts of resources.
241 * Gets the {@link Schema} object specified through
242 * the {@link #setSchema(Schema schema)} method.
251 * the {@link Schema} object that was last set throug
    [all...]
DocumentBuilder.java 26 import javax.xml.validation.Schema;
267 /** <p>Get a reference to the the {@link Schema} being used by
270 * <p>If no schema is being used, <code>null</code> is returned.</p>
272 * @return {@link Schema} being used or <code>null</code>
282 public Schema getSchema() {
SAXParser.java 26 import javax.xml.validation.Schema;
94 * <p>The reset <code>SAXParser</code> is not guaranteed to have the same {@link Schema}
96 * <code>Schema</code>.</p>
475 /** <p>Get a reference to the the {@link Schema} being used by
478 * <p>If no schema is being used, <code>null</code> is returned.</p>
480 * @return {@link Schema} being used or <code>null</code>
490 public Schema getSchema() {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
LayoutDevicesXsd.java 27 import javax.xml.validation.Schema;
32 * Public constants for the layout device description XML Schema.
41 * The "layout-devices" element is the root element of this schema.
115 * Helper to get an input stream of the layout config XML schema.
125 Schema schema = factory.newSchema(new StreamSource(xsdStream)); local
126 Validator validator = schema.newValidator();
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
ElementType.java 17 This class represents an element type in the schema.
19 a flags vector, default attributes, and a schema to which it belongs.
20 @see Schema
33 private Schema theSchema; // schema to which this belongs
37 but it's better to use Schema.element() instead.
46 @param schema The schema with which this element type will be
50 public ElementType(String name, int model, int memberOf, int flags, Schema schema) {
164 public Schema schema() {return theSchema;} method in class:ElementType
    [all...]
Schema.java 21 Abstract class representing a TSSL schema.
25 public abstract class Schema {
47 Add or replace an element type for this schema.
61 Get the root element of this schema
69 Add or replace a default attribute for an element type in this schema.
88 Specify natural parent of an element in this schema.
106 Add to or replace a character entity in this schema.
139 Return the URI (namespace name) of this schema.
147 Return the prefix of this schema.
155 Change the URI (namespace name) of this schema
    [all...]
Parser.java 40 private Schema theSchema;
265 Specifies the Schema object this Parser uses.
268 "http://www.ccil.org/~cowan/tagsoup/properties/schema";
386 if (value instanceof Schema) {
387 theSchema = (Schema)value;
390 throw new SAXNotSupportedException("Your schema is not a Schema");
536 // Currently we don't rely on Schema to canonicalize
610 // deferring to the schema for named ones.
653 if (CDATAElements && (theStack.flags() & Schema.F_CDATA) != 0)
    [all...]
HTMLSchema.java 16 This class provides a Schema that has been preinitialized with HTML
24 public class HTMLSchema extends Schema implements HTMLModels {
32 // Start of Schema calls
    [all...]
  /sdk/sdkmanager/libs/sdklib/tests/com/android/sdklib/repository/
SdkRepositoryTest.java 29 import javax.xml.validation.Schema;
36 * Tests local validation of an SDK Repository sample XMLs using an XML Schema validator.
117 Schema schema = factory.newSchema(new StreamSource(xsdStream)); local
118 Validator validator = schema.newValidator();
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
RepoSource.java 46 import javax.xml.validation.Schema;
188 mFetchError = "No suitable XML Schema Validator could be found in your Java environment. Please update your version of Java.";
219 mFetchError = "No suitable XML Schema Validator could be found in your Java environment. Please update your version of Java.";
371 * Validates this XML against one of the possible SDK Repository schema, starting
373 * If the XML was correctly validated, returns the schema that worked.
374 * If no schema validated the XML, returns null.
386 lastError = "XML verification failed for %1$s.\nNo suitable XML Schema Validator could be found in your Java environment. Please consider updating your version of Java.";
413 * The purpose of this method is to support forward evolution of our schema.
415 * At this point, we know that xml does not point to any schema that this version of
417 * XSD schema.
699 Schema schema = factory.newSchema(new StreamSource(xsdStream)); local
    [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]
sqlite3.c.orig     [all...]
  /prebuilt/sdk/8/
android.jar 
  /external/jdiff/
xerces.jar 

Completed in 405 milliseconds