CellHandle cell = sheet.add("Cell F7", "F7");
// add a note to cell A1, specifying note text and author name
sheet.createNote("A1", "This is a note attached to Cell A1", "cagney");
// add a note to cell D2, specifying note text and author name
CommentHandle nh= sheet.createNote("D2", "this is a note attached to D2\nshown", "maya");
nh.show(); // make note at D2 always shown
cell.createComment("Another Note attached to F7. This is very very long\nMultiLine\nRambling ...", "elmer");
book.write(workingdir + "testAddNotesOUT.xls");
}catch(Exception e) {
Logger.logInfo(e.toString());
}