[Jarspy-commits] CVS: JarSpy/src/com/ociweb/jarspy/intellij/plugin ConfigComponent.java,1.1,1.2 JarS
Status: Beta
Brought to you by:
brown_j
From: Jeff B. <br...@us...> - 2003-01-25 23:14:08
|
Update of /cvsroot/jarspy/JarSpy/src/com/ociweb/jarspy/intellij/plugin In directory sc8-pr-cvs1:/tmp/cvs-serv8325/src/com/ociweb/jarspy/intellij/plugin Modified Files: ConfigComponent.java JarSpyIntelliJPlugin.java JarSpyIntelliJPluginAction.java Log Message: added fields and methods to tree Index: ConfigComponent.java =================================================================== RCS file: /cvsroot/jarspy/JarSpy/src/com/ociweb/jarspy/intellij/plugin/ConfigComponent.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ConfigComponent.java 25 Jan 2003 03:44:52 -0000 1.1 --- ConfigComponent.java 25 Jan 2003 23:14:04 -0000 1.2 *************** *** 1,2 **** --- 1,20 ---- + // JarSpy + // Copyright (c) 2001, 2002 Jeff S. Brown + // This file is part of JarSpy. + // + // JarSpy 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. + // + // JarSpy 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 JarSpy; if not, write to the Free Software + // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + package com.ociweb.jarspy.intellij.plugin; Index: JarSpyIntelliJPlugin.java =================================================================== RCS file: /cvsroot/jarspy/JarSpy/src/com/ociweb/jarspy/intellij/plugin/JarSpyIntelliJPlugin.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** JarSpyIntelliJPlugin.java 25 Jan 2003 17:19:28 -0000 1.3 --- JarSpyIntelliJPlugin.java 25 Jan 2003 23:14:05 -0000 1.4 *************** *** 1,2 **** --- 1,20 ---- + // JarSpy + // Copyright (c) 2001, 2002 Jeff S. Brown + // This file is part of JarSpy. + // + // JarSpy 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. + // + // JarSpy 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 JarSpy; if not, write to the Free Software + // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + package com.ociweb.jarspy.intellij.plugin; *************** *** 51,54 **** --- 69,78 ---- treeIconPropertiesMap.put(JarSpyTreeCellRenderer.PACKAGE_OPENED_ICON_PROPERTY_KEY, "/nodes/packageOpen.png"); + + treeIconPropertiesMap.put(JarSpyTreeCellRenderer.METHOD_ICON_PROPERTY_KEY, + "/nodes/method.png"); + + treeIconPropertiesMap.put(JarSpyTreeCellRenderer.FIELD_ICON_PROPERTY_KEY, + "/nodes/field.png"); System.getProperties().putAll(treeIconPropertiesMap); Index: JarSpyIntelliJPluginAction.java =================================================================== RCS file: /cvsroot/jarspy/JarSpy/src/com/ociweb/jarspy/intellij/plugin/JarSpyIntelliJPluginAction.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** JarSpyIntelliJPluginAction.java 25 Jan 2003 03:44:52 -0000 1.1 --- JarSpyIntelliJPluginAction.java 25 Jan 2003 23:14:05 -0000 1.2 *************** *** 1,2 **** --- 1,20 ---- + // JarSpy + // Copyright (c) 2001, 2002 Jeff S. Brown + // This file is part of JarSpy. + // + // JarSpy 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. + // + // JarSpy 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 JarSpy; if not, write to the Free Software + // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + package com.ociweb.jarspy.intellij.plugin; |