package com.croftsoft.core.gui;
import java.awt.*;
/*********************************************************************
* Library of static methods for manipulating Cursor objects.
*
* @version
* $Id: CursorLib.java,v 1.1 2006/11/29 18:04:42 croft Exp $
* @since
* 2006-11-29
* @author
* <a href="http://www.CroftSoft.com/">David Wallace Croft</a>
*********************************************************************/
public final class CursorLib
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
{
public static Cursor createInvisibleCursor ( )
//////////////////////////////////////////////////////////////////////
{
final Toolkit toolkit = Toolkit.getDefaultToolkit ( );
return toolkit.createCustomCursor (
toolkit.createImage ( "" ),
new Point ( ),
null );
}
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
private CursorLib ( ) { /* */ }
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
}
|