Open a sketch in a new window. @param file File to open @return the Editor object, so that properties (like 'untitled') can be set by the caller @throws Exception
(File file)
| 857 | * @throws Exception |
| 858 | */ |
| 859 | public Editor handleOpen(File file) throws Exception { |
| 860 | return handleOpen(file, false); |
| 861 | } |
| 862 | |
| 863 | public Editor handleOpen(File file, boolean untitled) throws Exception { |
| 864 | return handleOpen(file, nextEditorLocation(), untitled); |
no test coverage detected