Java Swing Tutorial - Java Cursor DEFAULT_CURSOR








Syntax

Cursor.DEFAULT_CURSOR has the following syntax.

public static final int DEFAULT_CURSOR

Example

In the following code shows how to use Cursor.DEFAULT_CURSOR field.

import java.awt.Cursor;
//w w w. j  a  v  a 2 s  . com
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.DEFAULT_CURSOR));
    aWindow.setVisible(true);
  }
}