KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jfree > data > resources > DataPackageResources_ru


1 /* ===========================================================
2  * JFreeChart : a free chart library for the Java(tm) platform
3  * ===========================================================
4  *
5  * (C) Copyright 2000-2005, by Object Refinery Limited and Contributors.
6  *
7  * Project Info: http://www.jfree.org/jfreechart/index.html
8  *
9  * This library is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU Lesser General Public License as published by
11  * the Free Software Foundation; either version 2.1 of the License, or
12  * (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful, but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16  * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
17  * License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public License
20  * along with this library; if not, write to the Free Software Foundation,
21  * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
22  *
23  * [Java is a trademark or registered trademark of Sun Microsystems, Inc.
24  * in the United States and other countries.]
25  *
26  * ----------------------------
27  * DataPackageResources_ru.java
28  * ----------------------------
29  *
30  * Original Author: Sergey Bondarenko;
31  * Contributor(s): -;
32  *
33  * $Id: DataPackageResources_ru.java,v 1.2 2005/03/28 19:44:05 mungady Exp $
34  *
35  * Changes
36  * -------
37  *
38  */

39
40 package org.jfree.data.resources;
41
42 import java.util.ListResourceBundle JavaDoc;
43
44 /**
45  * A resource bundle that stores all the items that might need localisation.
46  *
47  * @author AB
48  */

49 public class DataPackageResources_ru extends ListResourceBundle JavaDoc {
50
51     /**
52      * Returns the array of strings in the resource bundle.
53      *
54      * @return The localised resources.
55      */

56     public Object JavaDoc[][] getContents() {
57         return CONTENTS;
58     }
59
60     /** The resources to be localised. */
61     private static final Object JavaDoc[][] CONTENTS = {
62
63         {"series.default-prefix", "?????"},
64         {"categories.default-prefix", "?????????"},
65
66     };
67
68 }
69
Popular Tags