XlsReader question
in
Contributed Library Questions
•
2 years ago
I am new to Processing and Java so I am sure that this question will be obvious to those of you who are skilled in both. In any event I would appreciate your help.
The code below produces the following error:
The constructor XlsReader(XlsReaderTest.XlsTable, String) is undefined.
import de.bezier.data.*;
XlsTable school;
XlsReader excelTable;
void setup(){
school = new XlsTable("schools.xls");
}
void draw(){
}
--------------------
class XlsTable {
XlsTable(String fileName) {
excelTable = new XlsReader (this, fileName);
}
}
Many thanks in advance,
Ron
The code below produces the following error:
The constructor XlsReader(XlsReaderTest.XlsTable, String) is undefined.
import de.bezier.data.*;
XlsTable school;
XlsReader excelTable;
void setup(){
school = new XlsTable("schools.xls");
}
void draw(){
}
--------------------
class XlsTable {
XlsTable(String fileName) {
excelTable = new XlsReader (this, fileName);
}
}
Many thanks in advance,
Ron
1