bOpenLinux.setEnabled(project.getCompileLinux());
}
private void updateNextButton()
{
JNCProject project = AppController.getAppController().getCurrentProject();
boolean b = false;
try
{
if(project.getCompileWindows() && project.getWindowsFile() == null) return;
if(project.getCompileLinux() && project.getLinuxFile() == null) return;
if(project.getMainClass() == null) return;
if(!project.getCompileWindows() && !project.getCompileLinux()) return;
if(project.getCompileWindows() && project.getCompileLinux() &&
project.getLinuxFile().equals(project.getWindowsFile())) return;
b = true;
} finally
{
JNC.getNextButton().setEnabled(b);
}