//Starting next week, Monday Office hours will be moved to Tuesdays 11-12pm /*javadoc, use these tags for A2: @param to add comments for parameters of a method @return to add comments about the return value of a non-void method Syntax: @param pname1 comments @param pname2 comments ... @return commants */ //A2 we will mark your assignment AS SUBMITTED! If they don’t compile with our tester you will get zero! // also submit your signoff.txt (we will NOT accept signoff.java or any other name!) ForDemo.example() ForDemo.example2() ForDemo.printSquares(4) ForDemo.printSquares(1) ForDemo.example() ForDemo.example2() //remember about quoting the backslash... FileAccess.displayFile("D:\\Temp\\ForDemo.java"); FileAccess.displayFile("ForDemo.java"); //current working directory //now think what you need if you want to write a simple editor (like Notepad). //more on files in this week's lab, review before going to the lab.