资 源 简 介
This java applet is very simple code, just a few buttons with a textbox and text output related to a checkbox.
The main idea behind this looks like :
```
import java.awt.*;
import java.awt.event.*;
import java.applet.Applet;
/**
*
* Beschreibung
*
* @version 1.0 vom 19.03.2012
* @author Chris Skirata
*/
public class PsychoTest extends Applet {
// Anfang Attribute
private Label label1 = new Label();
private Label label2 = new Label();
private TextField textField1 = new TextField();
private Checkbox checkbox1 = new Checkbox();
private Button button1 = new Button();
private TextArea textArea1 = new TextArea("", 1, 1, TextArea.SCROLLBARS_BOTH);
private String string1 = new String();
private String fail = new String();
private String clear = new String();
private boolean bool1 = false;
private Button button2 = new Button();
// Ende Attribute
public void init() {
Panel cp = new Panel(null);
cp.setBounds(0, 0, 302, 432);
ad