⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 demoresources_de.java

📁 JfreeChart 常用图表例子
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* =========================================================== * JFreeChart : a free chart library for the Java(tm) platform * =========================================================== * * (C) Copyright 2000-2004, by Object Refinery Limited and Contributors. * * Project Info:  http://www.jfree.org/jfreechart/index.html * * This library is free software; you can redistribute it and/or modify it under the terms * of the GNU Lesser General Public License as published by the Free Software Foundation; * either version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License along with this * library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, * Boston, MA 02111-1307, USA. * * [Java is a trademark or registered trademark of Sun Microsystems, Inc.  * in the United States and other countries.] * * --------------------- * DemoResources_de.java * --------------------- * (C) Copyright 2002-2004, by Object Refinery Limited and Contributors. * * Original Author:  David Gilbert (for Object Refinery Limited); * Contributor(s):   Thomas Meier; * * $Id: DemoResources_de.java,v 1.3 2004/01/03 05:38:58 mungady Exp $ * * Changes * ------- * 15-Mar-2002 : Version 1, translation by Thomas Meier (DG); * 24-Oct-2002 : Fixed errors reported by Checkstyle (DG); * */package org.jfree.chart.demo.resources;import java.util.ListResourceBundle;/** * Localised resources for Germany. * * @author TM */public class DemoResources_de extends ListResourceBundle {    /**     * Returns the array of strings in the resource bundle.     *     * @return the resources.     */    public Object[][] getContents() {        return CONTENTS;    }    /** The resources to be localised. */    private static final Object[][] CONTENTS = {        // about frame...        {"about.title", "Info..."},        {"about.version.label", "Version"},        // menu labels...        {"menu.file", "Datei"},        {"menu.file.mnemonic", new Character('D')},        {"menu.file.exit", "Beenden"},        {"menu.file.exit.mnemonic", new Character('B')},        {"menu.help", "Hilfe"},        {"menu.help.mnemonic", new Character('H')},        {"menu.help.about", "Info..."},        {"menu.help.about.mnemonic", new Character('I')},        // dialog messages...        {"dialog.exit.title", "Programm beenden..."},        {"dialog.exit.message", "Soll das Programm beendet werden?"},        // labels for the tabs in the main window...        {"tab.bar",      "Balkendiagramme"},        {"tab.pie",      "Kreisdiagramme"},        {"tab.xy",       "XY-Diagramme"},        {"tab.time",     "Zeitreihen-Diagramme"},        {"tab.other",    "Andere Diagramme"},        {"tab.test",     "Testdiagramme"},        {"tab.combined", "Kombinierte Diagramme"},        // sample chart descriptions...        {"chart1.title",       "Horizontales Balkendiagrammet: "},        {"chart1.description", "Anzeige eines horizontalen Balkendiagramms mit den Daten eines "                               + "CategoryDataset. Die numerische Achse ist invertiert."},        {"chart2.title",       "Horizontales Stacked Balkendiagramm: "},        {"chart2.description", "Anzeige eines horizontalen stacked Balkediagramms mit den Daten "                               + "eines CategoryDataset."},        {"chart3.title",       "Vertikales Balkendiagrammt: "},        {"chart3.description", "Anzeige eines vertikalen Balkendiagramms mit den Daten eines "                               + "CategoryDataset."},        {"chart4.title",       "Vertikales 3D Balkendiagramm: "},        {"chart4.description", "Anzeige eines vertikalen 3D Balkendiagramms mit den Daten eines "                               + "CategoryDataset."},        {"chart5.title",       "Vertikales Stacked Balkendiagramm: "},        {"chart5.description", "Displays vertical stacked bars, representing data from a "                               + "CategoryDataset."},        {"chart6.title",       "Vertikales Stacked 3D Balkendiagramm: "},        {"chart6.description", "Displays vertical stacked bars with a 3D effect, representing "                               + "data from a CategoryDataset."},        {"chart7.title",       "Kreisdiagramm 1: "},        {"chart7.description", "A pie chart showing one section exploded."},        {"chart8.title",       "Kreisdiagramm 2: "},        {"chart8.description", "A pie chart showing percentages on the category labels.  Also, "                               + "this plot has a background image."},        {"chart9.title",       "XY Plot: "},        {"chart9.description", "A line chart using data from an XYDataset.  Both axes are "                               + "numerical."},        {"chart10.title",       "Zeitreihe 1: "},        {"chart10.description", "A time series chart, representing data from an XYDataset.  This "                                + "chart also demonstrates the use of multiple chart titles."},        {"chart11.title",       "Zeitreihe 2: "},        {"chart11.description", "A time series chart, representing data from an XYDataset.  The "                                + "vertical axis has a logarithmic scale."},        {"chart12.title",       "Zeitreihe 3: "},        {"chart12.description", "A time series chart with a moving average."},        {"chart13.title",       "High/Low/Open/Close Diagramm: "},        {"chart13.description", "A high/low/open/close chart based on data in a HighLowDataset."},        {"chart14.title",       "Candlestick Diagramm: "},        {"chart14.description", "A candlestick chart based on data in a HighLowDataset."},        {"chart15.title",       "Signal Diagramm: "},        {"chart15.description", "A signal chart based on data in a SignalDataset."},        {"chart16.title",       "Wind Plot: "},        {"chart16.description", "A wind plot, represents wind direction and intensity (supplied "                                + "via a WindDataset)."},        {"chart17.title",       "Scatter Plot: "},        {"chart17.description", "A scatter plot, representing data in an XYDataset."},        {"chart18.title",       "Liniendiagramm: "},        {"chart18.description", "A chart displaying lines and or shapes, representing data in a "                                + "CategoryDataset.  This plot also illustrates the use of a "                                + "background image on the chart, and alpha-transparency on the "                                + "plot."},        {"chart19.title",       "Vertikales XY Balkendiagramm: "},        {"chart19.description", "A chart showing vertical bars, based on data in an "                                + "IntervalXYDataset."},        {"chart20.title",       "Null Daten: "},        {"chart20.description", "A chart with a null dataset."},        {"chart21.title",       "Keine Daten: "},        {"chart21.description", "A chart with a dataset containing zero series."},        {"chart22.title",       "Diagramm in einer JScrollPane: "},

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -