Java Swing Tutorial - Java Cursor .getPredefinedCursor (int type)








Syntax

Cursor.getPredefinedCursor(int type) has the following syntax.

public static Cursor getPredefinedCursor(int type)

Example

In the following code shows how to use Cursor.getPredefinedCursor(int type) method.

/* ww w  .  j  ava2  s .  co m*/
import java.awt.Cursor;

import javax.swing.JFrame;

public class Main {
  public static void main(String[] args) {
    JFrame aWindow = new JFrame();
    aWindow.setBounds(200, 200, 200, 200);
    aWindow.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    aWindow.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
    aWindow.setVisible(true);
  }
}