[Bprocessor-commit] gl/src/net/sourceforge/bprocessor/gl/tool AbstractTool.java, 1.125, 1.126
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2007-07-09 11:05:58
|
Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv6763/src/net/sourceforge/bprocessor/gl/tool Modified Files: AbstractTool.java Log Message: Indention Index: AbstractTool.java =================================================================== RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool/AbstractTool.java,v retrieving revision 1.125 retrieving revision 1.126 diff -C2 -d -r1.125 -r1.126 *** AbstractTool.java 19 Jun 2007 20:10:23 -0000 1.125 --- AbstractTool.java 9 Jul 2007 11:05:51 -0000 1.126 *************** *** 121,133 **** /** The mouse position last time the mouse was pressed initializes to (0,0) */ protected static int[] pressPos = new int[2]; - /** The mouse position last time there was a mouse event */ protected static int[] previousPos = new int[2]; - /** The mouse movement in x axis since press */ ! private static int dx = 0; ! /** The mouse movement in y axis since press */ ! private static int dy = 0; /** The snap variable */ --- 121,130 ---- /** The mouse position last time the mouse was pressed initializes to (0,0) */ protected static int[] pressPos = new int[2]; /** The mouse position last time there was a mouse event */ protected static int[] previousPos = new int[2]; /** The mouse movement in x axis since press */ ! protected static int dx = 0; /** The mouse movement in y axis since press */ ! protected static int dy = 0; /** The snap variable */ *************** *** 165,169 **** /** The time at wich the last mouse press accured */ ! private long pressedTime; /** --- 162,166 ---- /** The time at wich the last mouse press accured */ ! protected long pressedTime; /** *************** *** 924,926 **** --- 921,931 ---- return "No initial-tip has been written for this tool"; } + + /** + * + * @param object Object + */ + public static void info(Object object) { + log.info(object); + } } |