Package com.clowtown.mealplanner.datamodel.dishitem

Examples of com.clowtown.mealplanner.datamodel.dishitem.DishItemListWrapper


      while(line != null){
        MainDish dish = new MainDish();
        dish.build(line);
        line = reader.readLine();
        ItemList.addDish(dish);
        DishItemModel.getModel().addRow(new DishItemListWrapper(),true);
      }
    }catch(Exception e){
      e.printStackTrace();
    }
  }
View Full Code Here


      newDishButton.setText("New");
      newDishButton.setIcon(new ImageIcon("D:/eclipse/plugins/org.eclipse.compare.examples.xml_3.1.100.v20060609/doc-html/addidmap.gif"));
      newDishButton.addActionListener(new java.awt.event.ActionListener() {
        public void actionPerformed(java.awt.event.ActionEvent e) {
          ItemList.addDish(new MainDish());
          DishItemModel.getModel().addRow(new DishItemListWrapper(),false);
        }
      });
    }
    return newDishButton;
  }
View Full Code Here

TOP

Related Classes of com.clowtown.mealplanner.datamodel.dishitem.DishItemListWrapper

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.