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

📄 iconsresource.java

📁 利用Java实现的神经网络工具箱
💻 JAVA
字号:
/* * $RCSfile: IconsResource.java,v $ * $Revision: 1.2 $ * $Date: 2005/04/30 02:43:46 $ * * NeuralNetworkToolkit * Copyright (C) 2004 Universidade de Brasília * * This file is part of NeuralNetworkToolkit. * * NeuralNetworkToolkit is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * NeuralNetworkToolkit 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with NeuralNetworkToolkit; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA - 02111-1307 - USA. */package neuralnetworktoolkit.gui.resources;import java.util.ListResourceBundle;import javax.swing.ImageIcon;/** * GUI icons resources class.  *  * @version $Revision: 1.2 $ - $Date: 2005/04/30 02:43:46 $ *  * @author <a href="mailto:rodbra@pop.com.br">Rodrigo C. M. Coimbra</a> * @author <a href="mailto:hugoiver@yahoo.com.br">Hugo Iver V. Gonçalves</a> */public class IconsResource extends ListResourceBundle {		/* 	 * @see java.util.ListResourceBundle#getContents()	 */	protected Object[][] getContents() {		return contents;			} //getContents()		static final Object[][] contents = {			{"stock_update-data24", new ImageIcon("images/24x24/gtk-stock/data/stock_update-data.png")},			{"stock_data-save24", new ImageIcon("images/24x24/gtk-stock/data/stock_data-save.png")},			{"stock_filters24", new ImageIcon("images/24x24/gtk-stock/data/stock_filters.png")},			{"stock_new24", new ImageIcon("images/24x24/gtk-stock/document/stock_new.png")},			{"stock_about24", new ImageIcon("images/24x24/gtk-stock/generic/stock_about.png")},			{"stock_close24", new ImageIcon("images/24x24/gtk-stock/generic/stock_close.png")},			{"stock_exit24", new ImageIcon("images/24x24/gtk-stock/generic/stock_exit.png")},			{"stock_help24", new ImageIcon("images/24x24/gtk-stock/generic/stock_help.png")},			{"stock_add24", new ImageIcon("images/24x24/gtk-stock/generic/stock_add.png")},			{"stock_remove24", new ImageIcon("images/24x24/gtk-stock/generic/stock_remove.png")},			{"stock_insert-file24", new ImageIcon("images/24x24/gtk-stock/io/stock_insert-file.png")},			{"stock_open24", new ImageIcon("images/24x24/gtk-stock/io/stock_open.png")},			{"stock_save_as24", new ImageIcon("images/24x24/gtk-stock/io/stock_save_as.png")},			{"stock_save24", new ImageIcon("images/24x24/gtk-stock/io/stock_save.png")},			{"stock_insert-file24", new ImageIcon("images/24x24/gtk-stock/io/stock_insert-file.png")},			{"stock_left24", new ImageIcon("images/24x24/gtk-stock/navigation/stock_left.png")},			{"stock_right24", new ImageIcon("images/24x24/gtk-stock/navigation/stock_right.png")},			{"stock_left24", new ImageIcon("images/24x24/gtk-stock/navigation/stock_left.png")},			{"stock_navigator24", new ImageIcon("images/24x24/gtk-stock/navigation/stock_navigator.png")},			{"stock_text-double-click-to-edit24", new ImageIcon("images/24x24/gtk-stock/text/stock_text-double-click-to-edit.png")},			{"gnome-settings24", new ImageIcon("images/24x24/gtk-apps/gnome-settings.png")},			{"gnome-status24", new ImageIcon("images/24x24/gtk-apps/gnome-status.png")},			{"stock_filters16", new ImageIcon("images/16x16/gtk-stock/data/stock_filters.png")},			{"stock_update-data16", new ImageIcon("images/16x16/gtk-stock/data/stock_update-data.png")},			{"stock_data-save16", new ImageIcon("images/16x16/gtk-stock/data/stock_data-save.png")},			{"stock_new16", new ImageIcon("images/16x16/gtk-stock/document/stock_new.png")},			{"stock_about16", new ImageIcon("images/16x16/gtk-stock/generic/stock_about.png")},			{"stock_close16", new ImageIcon("images/16x16/gtk-stock/generic/stock_close.png")},			{"stock_exit16", new ImageIcon("images/16x16/gtk-stock/generic/stock_exit.png")},			{"stock_help16", new ImageIcon("images/16x16/gtk-stock/generic/stock_help.png")},			{"stock_insert-file16", new ImageIcon("images/16x16/gtk-stock/io/stock_insert-file.png")},			{"stock_open16", new ImageIcon("images/16x16/gtk-stock/io/stock_open.png")},			{"stock_save_as16", new ImageIcon("images/16x16/gtk-stock/io/stock_save_as.png")},			{"stock_save16", new ImageIcon("images/16x16/gtk-stock/io/stock_save.png")},			{"stock_left16", new ImageIcon("images/16x16/gtk-stock/navigation/stock_left.png")},			{"stock_right16", new ImageIcon("images/16x16/gtk-stock/navigation/stock_right.png")},			{"stock_left16", new ImageIcon("images/16x16/gtk-stock/navigation/stock_left.png")},			{"gnome-settings16", new ImageIcon("images/16x16/gtk-apps/gnome-settings.png")},			{"gnome-status16", new ImageIcon("images/16x16/gtk-apps/gnome-status.png")},			{"nntk", "NeuralNetworkToolkit"}		    		};} //IconsResource

⌨️ 快捷键说明

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