public void setFile(File file) throws FileNotFoundException {
String path = file.getAbsolutePath();
FileOpener fileOpener = new FileOpener(path, this.getCodeTextArea());
fileOpener.setMainPanel(this);
setFilePath(path);
fileOpener.load();
}
/**
* Set the file path.
*