I don't understand why I can't even make a new instance, IDE marks inner class name as unassigned
public class WbXLS {
class XlsCell {
public String getxlsCell(HSSFSheet sheet, String strCellValue) {
}
}
}
Tried without success
WbXLS.XlsCell xlscell = new wbXLS.new XlsCell();
I made the inner class to get return value from method and use it in another class. Am I right doing so?