From: <hu...@us...> - 2008-09-22 20:32:18
|
Revision: 811 http://cishell.svn.sourceforge.net/cishell/?rev=811&view=rev Author: huangb Date: 2008-09-22 20:31:59 +0000 (Mon, 22 Sep 2008) Log Message: ----------- Separate matrix data type from table data type. Have a separate matrix icon from table icon Modified Paths: -------------- trunk/clients/gui/org.cishell.reference.gui.datamanager/src/org/cishell/reference/gui/datamanager/DataGUIItem.java Modified: trunk/clients/gui/org.cishell.reference.gui.datamanager/src/org/cishell/reference/gui/datamanager/DataGUIItem.java =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.datamanager/src/org/cishell/reference/gui/datamanager/DataGUIItem.java 2008-09-18 21:20:17 UTC (rev 810) +++ trunk/clients/gui/org.cishell.reference.gui.datamanager/src/org/cishell/reference/gui/datamanager/DataGUIItem.java 2008-09-22 20:31:59 UTC (rev 811) @@ -38,6 +38,7 @@ private Image unknownIcon; private Image textIcon; private Image plotIcon; + private Image tableIcon; private Map typeToImageMapping; @@ -58,12 +59,13 @@ children = new ArrayList(); this.brandPluginID = brandPluginID; - matrixIcon = createImage("table.png", this.brandPluginID); + matrixIcon = createImage("matrix.png", this.brandPluginID); treeIcon = createImage("tree.png", this.brandPluginID); networkIcon = createImage("network.png", this.brandPluginID); unknownIcon = createImage("unknown.png", this.brandPluginID); textIcon = createImage("text.png", this.brandPluginID); plotIcon = createImage("plot.png", this.brandPluginID); + tableIcon = createImage("table.png", this.brandPluginID); typeToImageMapping = new HashMap(); registerImage(DataProperty.OTHER_TYPE, unknownIcon); @@ -72,7 +74,7 @@ registerImage(DataProperty.TREE_TYPE, treeIcon); registerImage(DataProperty.TEXT_TYPE, textIcon); registerImage(DataProperty.PLOT_TYPE, plotIcon); - registerImage(DataProperty.TABLE_TYPE, matrixIcon); + registerImage(DataProperty.TABLE_TYPE, tableIcon); } /** This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |