Cursor.N_RESIZE_CURSOR has the following syntax.
public static final int N_RESIZE_CURSOR
In the following code shows how to use Cursor.N_RESIZE_CURSOR field.
//from w w w . j av a2 s. com 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.N_RESIZE_CURSOR)); aWindow.setVisible(true); } }