por que o método Java repaint () não está funcionando?

O código abaixo é um teste muito simples, que envolve uma imagem. Ele deve repintar uma imagem sempre que eu enviar "a" para System.in e sair do programa sempre que eu enviar "q".

O problema é que apenas a saída funciona: o método paint () nunca é chamado e não sei por quê.

Verifiquei a chamada para "super.paint ()", tentei substituir paint (Graphics g) por paintCompoenent (Graphics g), mas nada parece funcionar: simplesmente não há chamada.

O problema que envolve o scanner está em main ()?

O caminho no programa não é o mesmo que eu usei, e a primeira pintura está correta, portanto o problema não deve estar lá.

NB, se for útil, estou usando o Eclipse Oxygen e o Java9 SE

Obrigado a todos!

colar código:

public class TestImagePanel extends JPanel {

    private BufferedImage image;
    private int xpos = 0;
    private int ypos = 0;
    private String _imagePath = "//myFolder//image.png";

    public TestImagePanel() {
        try {
            image = ImageIO.read(new File(_imagePath));
        } catch (IOException ex) {}
    }

    public void paint(Graphics g) {
        super.paint(g);
        System.out.println("painting LOG");
        g.drawImage(image, this.xpos++, this.ypos++, this);
    }

    public void update(String a) {
        System.out.print("Receiving:" + a + "---" + xpos + ":" + ypos);
        if (a.equals("a"))
            repaint();
        else if (a.equals("q")) {
            System.out.println("LOGOUT");
            System.exit(0);
        }
    }

    public static void main(String[] args) {
        JFrame frame = new JFrame("test");
        TestImagePanel testimg = new TestImagePanel();
        frame.add(new TestImagePanel());
        frame.setSize(new Dimension(600, 600));
        frame.setVisible(true);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        Scanner in = new Scanner(System.in);
        while (true)
            testimg.update( in .next());
    }
}

questionAnswers(2)

yourAnswerToTheQuestion