We have provided you with an applet that should do various things. However the java code that we have given you is not finished.
We provide code to:Download this file and edit it so that your applet does all the specifed operations. Compile and run the applet after each modification to do one of the tasks itemized above so that you know it works before going on to the next. (Refer back to the instructions for editing, compiling and running java code) Be sure your file is called "CS111Applet.java".
To get you started, we have filled in the code for the add button.
Applets do not print, so if this is a hardcopy this space should be blank.
Component | Examples | Methods |
Labels - are the simplest component, they are used to label other components. | The words "op1", "op2", "ans", "Type in selected color", "Add to list", "Selected in list", "From", and "to" | You will not need to call any methods on labels |
Buttons - Generate an event when they are pressed, this event is sent to an event handler. Used to present users with commonly exectued options. | Badd, Bgcd, BcolorButton, BaddToList, Bcount | You will not need to call any methods on buttons |
Radio Buttons - Like buttons but one radio button in a group is always pressed in, used for presenting users with choices that cannot happen together (the color is either red or black, it cannot be both.) | CBblack, CBred, CBgreen |
|
Text Fields - allow users to enter a text string into a box. Used to input data from the user. | TFop1, TFop2, TFans, TFcolor, TFaddToList, TFselectedFromList, TFfrom, TFto |
|
Text Areas - are much like text fields only they are more than one line and contain scroll bars. Text areas are used in word processing applications where the user enters large amounts of text data. | TAcount | Same as Text Field |
Choice Lists - Allow Users to select items from a list of Choices | Clist |
|
. . . if(e.target == Badd) { // declare 2 integer variables, x and y int x,y; // Set x to the number value of what Text Field op1's text is using textToNumber x = textToNumber(TFop1.getText()); // Set y to the integer value of what Text Field op2's text is y = textToNumber(TFop2.getText()); // Tell Text Field ans to set its text as the text representation of x + y HINT use numberToText(x+y) TFans.setText(numberToText(x+y)); . . .
Other text tidbits
PREVIOUS | 1 | 2 | 3 | 4 | 5 | 6 | 7 | NEXT |