BarExample.java:21: reference to setValue is ambiguous, both method setValue(jav
a.lang.Number,java.lang.Comparable,java.lang.Comparable) in org.jfree.data.categ
ory.DefaultCategoryDataset and method setValue(double,java.lang.Comparable,java.
lang.Comparable) in org.jfree.data.category.DefaultCategoryDataset match
dataset.setValue(rs.getInt(1), "Profit %", rs.getInt(2));
^
1 error
I don't understand. What's the deal here??
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35252
7
posted
0
It's like the message says: the DefaultCategoryDataset class has two methods that would match the parameters that you're providing. Check out the javadocs of that class for details. You need to make it clear which of the two methods you want to invoke (although, actually, invoking either of them will have the same result). You can do this either by calling
BarExample.java:21: reference to setValue is ambiguous, both method setValue(jav
a.lang.Number,java.lang.Comparable,java.lang.Comparable) in org.jfree.data.categ
ory.DefaultCategoryDataset and method setValue(double,java.lang.Comparable,java.
lang.Comparable) in org.jfree.data.category.DefaultCategoryDataset match
dataset.setValue(new Integer(rs.getInt(1)), "Profit %", rs.getInt(2));
^
1 error