Konvertiert die JTextField-Eingabe in eine Ganzzahl

Ich bin neu in JAVA, ich versuche, eine Eingabe von einem JTextField in eine Ganzzahl umzuwandeln, ich habe viele Optionen ausprobiert, aber nichts funktioniert, die Sonnenfinsternis gibt mir immer einen Fehler und die Fehler ergeben für mich keinen Sinn.

java.awt.Graphics importieren; import java.awt.Color;

public class circle extends Shape{

public int x;
public int y;
public int Radius;

public circle (int Radius, int x, int y, Color c){
    super(c);
    this.x = x;
    this.y = y;
    this.Radius = Radius;
}
    public void draw(Graphics g){
        g.setColor(super.getColor());
        g.fillOval(x-Radius, y-Radius, Radius * 2, Radius * 2);
    }
 }

Antworten auf die Frage(4)

Ihre Antwort auf die Frage