< prev index next >

src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/util/ErrorMessages.java

Print this page


   1 /*
   2  * reserved comment block
   3  * DO NOT REMOVE OR ALTER!
   4  */
   5 /*
   6  * Copyright 2001-2004 The Apache Software Foundation.
   7  *
   8  * Licensed under the Apache License, Version 2.0 (the "License");
   9  * you may not use this file except in compliance with the License.
  10  * You may obtain a copy of the License at

  11  *
  12  *     http://www.apache.org/licenses/LICENSE-2.0
  13  *
  14  * Unless required by applicable law or agreed to in writing, software
  15  * distributed under the License is distributed on an "AS IS" BASIS,
  16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17  * See the License for the specific language governing permissions and
  18  * limitations under the License.
  19  */
  20 
  21 package com.sun.org.apache.xalan.internal.xsltc.compiler.util;
  22 
  23 import java.util.ListResourceBundle;
  24 
  25 /**
  26  * @author Morten Jorgensen
  27  */
  28 public class ErrorMessages extends ListResourceBundle {
  29 
  30 /*


 151          * Processing the stylesheet required a reference to the method named by
 152          * the substitution text, but no method with the required types of
 153          * arguments or return type could be found.
 154          */
 155         {ErrorMsg.ARGUMENT_CONVERSION_ERR,
 156         "Cannot convert argument/return type in call to method ''{0}''"},
 157 
 158         /*
 159          * Note to translators:  The file or URI named in the substitution text
 160          * is missing.
 161          */
 162         {ErrorMsg.FILE_NOT_FOUND_ERR,
 163         "File or URI ''{0}'' not found."},
 164 
 165         /*
 166          * Note to translators:  This message is displayed when the URI
 167          * mentioned in the substitution text is not well-formed syntactically.
 168          */
 169         {ErrorMsg.INVALID_URI_ERR,
 170         "Invalid URI ''{0}''."},








 171 
 172         /*
 173          * Note to translators:  The file or URI named in the substitution text
 174          * exists but could not be opened.
 175          */
 176         {ErrorMsg.FILE_ACCESS_ERR,
 177         "Cannot open file or URI ''{0}''."},
 178 
 179         /*
 180          * Note to translators: <xsl:stylesheet> and <xsl:transform> are
 181          * keywords that should not be translated.
 182          */
 183         {ErrorMsg.MISSING_ROOT_ERR,
 184         "<xsl:stylesheet> or <xsl:transform> element expected."},
 185 
 186         /*
 187          * Note to translators:  The stylesheet contained a reference to a
 188          * namespace prefix that was undefined.  The value of the substitution
 189          * text is the name of the prefix.
 190          */


   1 /*
   2  * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.

   3  */
   4 /*
   5  * Licensed to the Apache Software Foundation (ASF) under one or more
   6  * contributor license agreements.  See the NOTICE file distributed with
   7  * this work for additional information regarding copyright ownership.
   8  * The ASF licenses this file to You under the Apache License, Version 2.0
   9  * (the "License"); you may not use this file except in compliance with
  10  * the License.  You may obtain a copy of the License at
  11  *
  12  *      http://www.apache.org/licenses/LICENSE-2.0
  13  *
  14  * Unless required by applicable law or agreed to in writing, software
  15  * distributed under the License is distributed on an "AS IS" BASIS,
  16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17  * See the License for the specific language governing permissions and
  18  * limitations under the License.
  19  */
  20 
  21 package com.sun.org.apache.xalan.internal.xsltc.compiler.util;
  22 
  23 import java.util.ListResourceBundle;
  24 
  25 /**
  26  * @author Morten Jorgensen
  27  */
  28 public class ErrorMessages extends ListResourceBundle {
  29 
  30 /*


 151          * Processing the stylesheet required a reference to the method named by
 152          * the substitution text, but no method with the required types of
 153          * arguments or return type could be found.
 154          */
 155         {ErrorMsg.ARGUMENT_CONVERSION_ERR,
 156         "Cannot convert argument/return type in call to method ''{0}''"},
 157 
 158         /*
 159          * Note to translators:  The file or URI named in the substitution text
 160          * is missing.
 161          */
 162         {ErrorMsg.FILE_NOT_FOUND_ERR,
 163         "File or URI ''{0}'' not found."},
 164 
 165         /*
 166          * Note to translators:  This message is displayed when the URI
 167          * mentioned in the substitution text is not well-formed syntactically.
 168          */
 169         {ErrorMsg.INVALID_URI_ERR,
 170         "Invalid URI ''{0}''."},
 171 
 172         /*
 173          * Note to translators:  This message is displayed when the URI
 174          * mentioned in the substitution text is not well-formed syntactically.
 175          */
 176         {ErrorMsg.CATALOG_EXCEPTION,
 177         "JAXP08090001: The CatalogResolver is enabled with the catalog \"{0}\", "
 178               + "but a CatalogException is returned."},
 179 
 180         /*
 181          * Note to translators:  The file or URI named in the substitution text
 182          * exists but could not be opened.
 183          */
 184         {ErrorMsg.FILE_ACCESS_ERR,
 185         "Cannot open file or URI ''{0}''."},
 186 
 187         /*
 188          * Note to translators: <xsl:stylesheet> and <xsl:transform> are
 189          * keywords that should not be translated.
 190          */
 191         {ErrorMsg.MISSING_ROOT_ERR,
 192         "<xsl:stylesheet> or <xsl:transform> element expected."},
 193 
 194         /*
 195          * Note to translators:  The stylesheet contained a reference to a
 196          * namespace prefix that was undefined.  The value of the substitution
 197          * text is the name of the prefix.
 198          */


< prev index next >