I have an paneel.java file wich looks like the following code:
import java.awt.*;
import javax.swing.*;
public class Paneel extends JFrame
{
public stat
public static void main ( String [] args )
{
// frame
JFrame frame = new Paneel();
frame.setSize ( 1000, 1000 );
frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
frame.setTitle( "Remembory" );
// Add following
GifPaneel gifpan = new GifPaneel();
gifpan.repaint();
frame.add(gifpan);
frame.setVisible( true );
}