#BlueJ class context comment0.target=GUI_Intro comment0.text=\r\n\ This\ is\ the\ main\ exercises\ for\ learning\ how\ to\ use\ the\ GUI.\r\n\ To\ start\ with,\ Create\ buttons\ that\ do\ the\ following\:\ \r\n\ Part\ A\ 1)\ add\ to\ the\ count,\ 2)\ print\ hello\ and\ 3)double\ the\ money\ each\ time\ the\ button\ is\ clicked\ \r\n\ Part\ B\ 1)\ 3\ Different\ buttons\ that\ add\ different\ words\ tot\ he\ word\ array.\ 2)A\ button\ that\ prints\ out\ everything.\ 3)A\ button\ that\ emptys\ out\ the\ words\ array\r\n\ Part\ C\ Now,\ instead\ of\ printing\ hello\ and\ the\ money\ to\ the\ console,\ create\ a\ Label\ and\ change\ the\ label\ to\ the\ value\ of\ money\ instead.\ If\ Hello\ is\ clicked,\ make\ it\ say\ hello\!\r\n\ Part\ D\ Now\ setup\ a\ TextArea\ and\ adjust\ all\ system.out.printlns\ to\ print\ to\ the\ TextArea\ instead.\r\n\r\n\ @author\ (your\ name)\r\n\ @version\ (a\ version\ number\ or\ a\ date)\r\n comment1.params=stage comment1.target=void\ start(javafx.stage.Stage) comment1.text=\r\n\ The\ start\ method\ is\ the\ main\ entry\ point\ for\ every\ JavaFX\ application.\ \r\n\ It\ is\ called\ after\ the\ init()\ method\ has\ returned\ and\ after\ \r\n\ the\ system\ is\ ready\ for\ the\ application\ to\ begin\ running.\r\n\r\n\ @param\ \ stage\ the\ primary\ stage\ for\ this\ application.\r\n comment2.params=event comment2.target=void\ buttonClick(javafx.event.ActionEvent) comment2.text=\r\n\ This\ will\ be\ executed\ when\ the\ button\ is\ clicked\r\n\ It\ increments\ the\ count\ by\ 1\r\n comment3.params=event comment3.target=void\ printHello(javafx.event.ActionEvent) comment3.text=\r\n\ This\ will\ be\ executed\ when\ the\ button\ is\ clicked\r\n\ Prints\ Hello\ to\ the\ console\r\n comment4.params=event comment4.target=void\ printMoney(javafx.event.ActionEvent) comment4.text=\r\n\ Double\ the\ money.\ Then\ print\ it\ out\ each\ time\ it\ is\ printed.\r\n comment5.params=event comment5.target=void\ addWord1(javafx.event.ActionEvent) comment5.text=\r\n\ When\ this\ button\ is\ clicked,\ add\ the\ word\ "orange"\ to\ the\ words\ array\r\n comment6.params=event comment6.target=void\ addWord2(javafx.event.ActionEvent) comment6.text=\r\n\ When\ this\ button\ is\ clicked,\ add\ the\ word\ "cat"\ to\ the\ words\ array\r\n comment7.params=event comment7.target=void\ addWord3(javafx.event.ActionEvent) comment7.text=\r\n\ When\ this\ button\ is\ clicked,\ add\ a\ String\ of\ your\ choice\ to\ the\ words\ array.\r\n comment8.params=event comment8.target=void\ printAllWords(javafx.event.ActionEvent) comment8.text=\r\n\ When\ this\ button\ is\ clicked,\ print\ out\ all\ the\ words\ in\ the\ words\ array.\r\n comment9.params=text comment9.target=void\ printText(java.lang.String) numComments=10