768769770771772773774775776777778
* * @return void */ private void menuFileNew() { try{ Culture culture = Culture.create(Culture.typeEmpty); open(culture,null); }catch(IOException e){ Messages.showException(e); }catch(ClassNotFoundException e){ Messages.showException(e);
225226227228229230231232233234235
} private void openCulture(){ if(CannaGrower.cannagrower.getCultureActive()==null){ // Opening demo culture Culture culture; try{ culture=Culture.create(Culture.typeDemo); }catch(IOException e){ Messages.showException(e);