Package org.apache.xerces.util

Examples of org.apache.xerces.util.MessageFormatter.formatMessage()


            // attempt to include a fallback if there is one.
            if (javaEncoding == null) {
              MessageFormatter aFormatter =
                    fErrorReporter.getMessageFormatter(XMLMessageFormatter.XML_DOMAIN);
              Locale aLocale = fErrorReporter.getLocale();
              throw new IOException( aFormatter.formatMessage( aLocale,
                  "EncodingDeclInvalid",
                    new Object[] {encoding} ) );
            }           
           
            return new InputStreamReader(stream, javaEncoding);
View Full Code Here


        continue;
      localObject2 = localSchemaGrammar.getTargetNamespace();
      if (localArrayList.contains(localObject2))
      {
        MessageFormatter localMessageFormatter = this.fErrorReporter.getMessageFormatter("http://www.w3.org/TR/xml-schema-1");
        throw new IllegalArgumentException(localMessageFormatter.formatMessage(this.fErrorReporter.getLocale(), "jaxp12-schema-source-ns", null));
      }
      localArrayList.add(localObject2);
      if (((localObject1[i] instanceof InputStream)) || ((localObject1[i] instanceof InputSource)))
        this.fJAXPCache.put(localObject1[i], localSchemaGrammar);
      this.fGrammarBucket.putGrammar(localSchemaGrammar);
View Full Code Here

        ) {
            // Not an Object[], String[], File[], InputStream[], InputSource[]
            MessageFormatter mf = fErrorReporter.getMessageFormatter(XSMessageFormatter.SCHEMA_DOMAIN);
            throw new XMLConfigurationException(
                    XMLConfigurationException.NOT_SUPPORTED,
                    mf.formatMessage(fErrorReporter.getLocale(), "jaxp12-schema-source-type.2",
                    new Object [] {componentType.getName()}));
        }
       
        // JAXP spec. allow []s of type String, File, InputStream,
        // InputSource also, apart from [] of type Object.
View Full Code Here

            if (grammar != null) {
                targetNamespace = grammar.getTargetNamespace();
                if (jaxpSchemaSourceNamespaces.contains(targetNamespace)) {
                    // when an array of objects is passed it is illegal to have two schemas that share same namespace.
                    MessageFormatter mf = fErrorReporter.getMessageFormatter(XSMessageFormatter.SCHEMA_DOMAIN);
                    throw new java.lang.IllegalArgumentException(mf.formatMessage(fErrorReporter.getLocale(),
                            "jaxp12-schema-source-ns", null));
                }
                else {
                    jaxpSchemaSourceNamespaces.add(targetNamespace) ;
                }
View Full Code Here

            return new XMLInputSource(null, escapedURI, null, is, null);
        }
        MessageFormatter mf = fErrorReporter.getMessageFormatter(XSMessageFormatter.SCHEMA_DOMAIN);
        throw new XMLConfigurationException(
                XMLConfigurationException.NOT_SUPPORTED,
                mf.formatMessage(fErrorReporter.getLocale(), "jaxp12-schema-source-type.1",
                new Object [] {val != null ? val.getClass().getName() : "null"}));
    }
   
   
    //Convert a SAX InputSource to an equivalent XNI XMLInputSource
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.