Mega Code Archive

 
Categories / Java Tutorial / SWT
 

Causes the system hardware to emit a short sound if it supports this capability

import org.eclipse.swt.widgets.Display; public class MainClass {   static Display display = new Display();   public static void main(String[] args) {     display.beep();   } }