|
From: <be...@us...> - 2006-10-23 20:54:26
|
Revision: 41
http://svn.sourceforge.net/jtreemap/?rev=41&view=rev
Author: benoitx
Date: 2006-10-23 13:54:03 -0700 (Mon, 23 Oct 2006)
Log Message:
-----------
Moved remotely
Added Paths:
-----------
trunk/JTreeMap/src/main/java/net/sf/jtreemap/swing/ColorProvider.java
Removed Paths:
-------------
trunk/JTreeMap/src/main/java/org/jense/swing/jtreemap/ColorProvider.java
Copied: trunk/JTreeMap/src/main/java/net/sf/jtreemap/swing/ColorProvider.java (from rev 40, trunk/JTreeMap/src/main/java/org/jense/swing/jtreemap/ColorProvider.java)
===================================================================
--- trunk/JTreeMap/src/main/java/net/sf/jtreemap/swing/ColorProvider.java (rev 0)
+++ trunk/JTreeMap/src/main/java/net/sf/jtreemap/swing/ColorProvider.java 2006-10-23 20:54:03 UTC (rev 41)
@@ -0,0 +1,30 @@
+package org.jense.swing.jtreemap;
+
+import javax.swing.JPanel;
+import java.awt.Color;
+
+/**
+ * Abstract class with the methods who attribute color to the elements of
+ * JTreeMap.
+ *
+ * @author Laurent DUTHEIL
+ */
+
+public abstract class ColorProvider {
+
+ /**
+ * get the associated color to the value.
+ *
+ *@param value double value
+ *@return the associated color to the value
+ */
+ public abstract Color getColor(Value value);
+
+ /**
+ * get a legend JPanel.
+ *
+ *@return a legend JPanel
+ */
+ public abstract JPanel getLegendPanel();
+
+}
Deleted: trunk/JTreeMap/src/main/java/org/jense/swing/jtreemap/ColorProvider.java
===================================================================
--- trunk/JTreeMap/src/main/java/org/jense/swing/jtreemap/ColorProvider.java 2006-10-23 20:53:08 UTC (rev 40)
+++ trunk/JTreeMap/src/main/java/org/jense/swing/jtreemap/ColorProvider.java 2006-10-23 20:54:03 UTC (rev 41)
@@ -1,30 +0,0 @@
-package org.jense.swing.jtreemap;
-
-import javax.swing.JPanel;
-import java.awt.Color;
-
-/**
- * Abstract class with the methods who attribute color to the elements of
- * JTreeMap.
- *
- * @author Laurent DUTHEIL
- */
-
-public abstract class ColorProvider {
-
- /**
- * get the associated color to the value.
- *
- *@param value double value
- *@return the associated color to the value
- */
- public abstract Color getColor(Value value);
-
- /**
- * get a legend JPanel.
- *
- *@return a legend JPanel
- */
- public abstract JPanel getLegendPanel();
-
-}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|