TelaAnimacao.java 657 Bytes
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
package circusRefine.gui;

import circusRefine.core.ExternalManager;
import javax.swing.JInternalFrame;

/**
*
*/
public class TelaAnimacao extends JInternalFrame {

private PanelAnimacao pa;

/**
*/
public TelaAnimacao(ExternalManager gerInterface) {
super("Animation", true, false, true, true);

this.setSize(800,600);
this.setLocation(30,40);

try {
pa = new PanelAnimacao(gerInterface);
this.add(pa);
} catch (Exception e) {
e.printStackTrace();
}
}

public PanelAnimacao getPa() {
return pa;
}
}