286N/A/*
286N/A * reserved comment block
286N/A * DO NOT REMOVE OR ALTER!
286N/A */
286N/A/*
286N/A * Copyright 1999-2004 The Apache Software Foundation.
286N/A *
286N/A * Licensed under the Apache License, Version 2.0 (the "License");
286N/A * you may not use this file except in compliance with the License.
286N/A * You may obtain a copy of the License at
286N/A *
286N/A * http://www.apache.org/licenses/LICENSE-2.0
286N/A *
286N/A * Unless required by applicable law or agreed to in writing, software
286N/A * distributed under the License is distributed on an "AS IS" BASIS,
286N/A * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
286N/A * See the License for the specific language governing permissions and
286N/A * limitations under the License.
286N/A */
286N/A/*
286N/A * $Id: XResourceBundleBase.java,v 1.2.4.1 2005/09/15 08:16:05 suresh_emailid Exp $
286N/A */
286N/Apackage com.sun.org.apache.xml.internal.utils.res;
286N/A
286N/Aimport java.util.ListResourceBundle;
286N/A
286N/A/**
286N/A * This is an interface for error messages. This class is misnamed,
286N/A * and should be called XalanResourceBundle, or some such.
286N/A * @xsl.usage internal
286N/A */
286N/Aabstract public class XResourceBundleBase extends ListResourceBundle
286N/A{
286N/A
286N/A /**
286N/A * Get the error string associated with the error code
286N/A *
286N/A * @param errorCode Error code
286N/A *
286N/A * @return error string associated with the given error code
286N/A */
286N/A abstract public String getMessageKey(int errorCode);
286N/A
286N/A /**
286N/A * Get the warning string associated with the error code
286N/A *
286N/A * @param errorCode Error code
286N/A *
286N/A * @return warning string associated with the given error code
286N/A */
286N/A abstract public String getWarningKey(int errorCode);
286N/A}