Source Code Membuat Animasi Perulangan Pada Java

 

// Perulangan animasi
do {
long time = System.currentTimeMillis();
if(time - lastDisplay > frameDelay) {
repaint();
try {
Thread.sleep(frameDelay);
}catch(InterruptedException ex){
}
++currentFrame;
currentFrame %= numFrames;
lastDisplay = time;
}
} while (true);
}
class MenuItemHandler implements ActionListener, ItemListener {
public void actionPerformed(ActionEvent ev){
String s=ev.getActionCommand();
if(s=="Exit"){
System.exit(0);
}
}
public void itemStateChanged(ItemEvent e){
}
}
//Kelas yang digunakan agar tombol close pada frame bisa berfungsi
class WindowEventHandler extends WindowAdapter {
public void windowClosing(WindowEvent e){
System.exit(0);
}
}

}


No comments:
Write comments
  • Samsung Printer SL-M2825 Driver Downloads
  • Samsung Xpress SL-M2825 Laser PrintersFast print speeds, a 12,000-page duty ... read more
  • Samsung MultiXpress CLX-9251 Driver Downloads
  • Samsung MultiXpress CLX-9251 Laser Multifunction PrinterPaper supply starts ... read more
  • Samsung ProXpress SL-M4560 Driver Downloads
  • Samsung ProXpress SL-M4560 Laser Multifunction Printer Samsung ProXpress ... read more
  • Samsung MultiXpress CLX-9256 Driver Downloads
  • Samsung MultiXpress CLX-9256 Laser Multifunction Printer CLX-9256 scans of ... read more
  • Dell C2665dnf Driver Downloads
  • Dell C2665dnf  Color Multifunction PrinterPrinter Category: LaserType: ... read more
    Recent Posts Widget