Edit C:\Program Files\Java\jdk1.8.0_121\com\sun\glass\ui\win\WinCursor.java
/* * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.glass.ui.win; import com.sun.glass.ui.Cursor; import com.sun.glass.ui.Pixels; import com.sun.glass.ui.Size; /** * MS Windows platform implementation class for Cursor. */ final class WinCursor extends Cursor { private native static void _initIDs(); static { _initIDs(); } protected WinCursor(int type) { super(type); } protected WinCursor(int x, int y, Pixels pixels) { super(x, y, pixels); } @Override native protected long _createCursor(int x, int y, Pixels pixels); native private static void _setVisible(boolean visible); native private static Size _getBestSize(int width, int height); static void setVisible_impl(boolean visible) { _setVisible(visible); } static Size getBestSize_impl(int width, int height) { return _getBestSize(width, height); } }
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de