KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > xalan > xsltc > runtime > ErrorMessages_no


1 /*
2  * Copyright 2001-2004 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 /*
17  * $Id: ErrorMessages_no.java,v 1.5 2004/02/16 22:55:54 minchau Exp $
18  */

19
20 package org.apache.xalan.xsltc.runtime;
21
22 import java.util.ListResourceBundle JavaDoc;
23
24 /**
25  * @author Morten Jorgensen
26  */

27 public class ErrorMessages_no extends ListResourceBundle JavaDoc {
28
29
30     // Disse feilmeldingene maa korrespondere med konstantene some er definert
31
// nederst i kildekoden til BasisLibrary.
32
private static final Object JavaDoc[][] m_errorMessages = {
33     {BasisLibrary.RUN_TIME_INTERNAL_ERR,
34     "Intern programfeil i ''{0}''"},
35
36     {BasisLibrary.RUN_TIME_COPY_ERR,
37     "Programfeil under utf\u00f8ing av <xsl:copy>."},
38
39     {BasisLibrary.DATA_CONVERSION_ERR,
40     "Ugyldig konvertering av ''{0}'' fra ''{1}''."},
41
42     {BasisLibrary.EXTERNAL_FUNC_ERR,
43     "Ekstern funksjon ''{0}'' er ikke st\u00f8ttet av XSLTC."},
44
45     {BasisLibrary.EQUALITY_EXPR_ERR,
46     "Ugyldig argument i EQUALITY uttrykk."},
47
48     {BasisLibrary.INVALID_ARGUMENT_ERR,
49     "Ugyldig argument ''{0}'' i kall til ''{1}''"},
50
51     {BasisLibrary.FORMAT_NUMBER_ERR,
52     "Fors\u00f8k p\u00e5 \u00e5 formattere nummer ''{0}'' med ''{1}''."},
53
54     {BasisLibrary.ITERATOR_CLONE_ERR,
55     "Kan ikke klone iterator ''{0}''."},
56
57     {BasisLibrary.AXIS_SUPPORT_ERR,
58     "Iterator for axis ''{0}'' er ikke st\u00e8ttet."},
59
60     {BasisLibrary.TYPED_AXIS_SUPPORT_ERR,
61     "Iterator for typet axis ''{0}'' er ikke st\u00e8ttet."},
62
63     {BasisLibrary.STRAY_ATTRIBUTE_ERR,
64     "Attributt ''{0}'' utenfor element."},
65
66     {BasisLibrary.STRAY_NAMESPACE_ERR,
67     "Navnedeklarasjon ''{0}''=''{1}'' utenfor element."},
68
69     {BasisLibrary.NAMESPACE_PREFIX_ERR,
70     "Prefix ''{0}'' er ikke deklartert."},
71
72     {BasisLibrary.DOM_ADAPTER_INIT_ERR,
73     "Fors\u00f8k p\u00e5 \u00e5 instansiere DOMAdapter med feil type DOM."}
74
75     };
76
77     public Object JavaDoc[][] getContents() {
78         return m_errorMessages;
79     }
80 }
81
Popular Tags