From: <pat...@us...> - 2010-11-04 21:35:02
|
Revision: 1150 http://cishell.svn.sourceforge.net/cishell/?rev=1150&view=rev Author: pataphil Date: 2010-11-04 21:34:56 +0000 (Thu, 04 Nov 2010) Log Message: ----------- * Added R icon for use in the Data Manager. Modified Paths: -------------- trunk/clients/gui/org.cishell.reference.gui.datamanager/src/org/cishell/reference/gui/datamanager/DataGUIItem.java trunk/core/org.cishell.framework/src/org/cishell/framework/data/DataProperty.java Added Paths: ----------- trunk/clients/gui/org.cishell.reference.gui.brand.cishell/icons/r.png Added: trunk/clients/gui/org.cishell.reference.gui.brand.cishell/icons/r.png =================================================================== (Binary files differ) Property changes on: trunk/clients/gui/org.cishell.reference.gui.brand.cishell/icons/r.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream 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 2010-11-02 17:48:25 UTC (rev 1149) +++ trunk/clients/gui/org.cishell.reference.gui.datamanager/src/org/cishell/reference/gui/datamanager/DataGUIItem.java 2010-11-04 21:34:56 UTC (rev 1150) @@ -44,6 +44,7 @@ private Image rasterImageIcon; private Image vectorImageIcon; private Image modelIcon; + private Image rIcon; private Map typeToImageMapping; @@ -75,6 +76,7 @@ rasterImageIcon = getImage("raster_image.jpg", this.brandPluginID); vectorImageIcon = getImage("vector_image.jpg", this.brandPluginID); modelIcon = getImage("model.jpg", this.brandPluginID); + rIcon = getImage("r.png", this.brandPluginID); typeToImageMapping = new HashMap(); registerImage(DataProperty.OTHER_TYPE, unknownIcon); @@ -96,6 +98,7 @@ registerImage(DataProperty.RASTER_IMAGE_TYPE, rasterImageIcon); registerImage(DataProperty.VECTOR_IMAGE_TYPE, vectorImageIcon); registerImage(DataProperty.MODEL_TYPE, modelIcon); + registerImage(DataProperty.R_INSTANCE_TYPE, rIcon); } /** Modified: trunk/core/org.cishell.framework/src/org/cishell/framework/data/DataProperty.java =================================================================== --- trunk/core/org.cishell.framework/src/org/cishell/framework/data/DataProperty.java 2010-11-02 17:48:25 UTC (rev 1149) +++ trunk/core/org.cishell.framework/src/org/cishell/framework/data/DataProperty.java 2010-11-04 21:34:56 UTC (rev 1150) @@ -93,4 +93,7 @@ /** Says this data model is a 'model' object */ public static String MODEL_TYPE = "Model"; + + /** Says this data model is an 'R instance' object */ + public static String R_INSTANCE_TYPE = "R Instance"; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |