this is the error message i receive in the cmd whenever i try to compile it... error: invalid method declaration; return type required static main(String args[])
this is my code (the error appears at the last declaration).
import java.awt.Color;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JPanel;
import javax.swing.JWindow;
public class Counter extends JPanel implements ActionListener {
private static final long serialVersionUID = 1L;
private final font FONT = new Font("Impact", Font.PLAIN, 72);
private final File SOUND = new File("sound/tick.wav");
private Timer timer;
private int time;
public Counter() {
set0paque(false);
setPrefferedSize(new Dimension(400,400));
time = 60;
timer = new Timer(1000, this);
timer.start();
}
@Override
public void paintComponent(Graphics g) {
super.paintComponent(g);
Graphics2D g2 = (Graphics2D) g;
g2.setRenderingHint(RenderingHints,KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_ON);
g2.setFont(FONT);
g2.setColor(Color.GREEN);
String text = "00:" +String.valueOf(time);
int width = g.getFontMetrcis().stringWidth(text);
g2.drawString(text, getWidth() / 2 - width / 2, getHeight() / 2);
}
@Override
public void actionPerformed(ActionEvent e) {
time--;
if(time == 0) {
shutdown();
}
repaint();
playsound();
}
private void shutdown() {
try{
Runtime runtime = Runtime.getRuntime();
runtime.exec("shutdown -s -t 0");
Systen.exit(0);
} catch (IOException e) {
e.printStackTrace();
}
}
public static main(String args[]) {
JWindow window = new JWindow();
window.add(new Counter());
window.pack();
window.setBackground(new Color(0,0,0,0));
window.setLocationRelativeTo(null);
window.setVisible(true);
}
}
Thank you :
Every method declaration must have a return type. If you don't want to return anything (as is the case with
main
), you should declare the return type asvoid
: