Subversion Repository Public Repository

litesoft

Diff Revisions 2 vs 23 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/nonpublic/external/DragThresholdFilter.java

Diff revisions: vs.
  @@ -51,6 +51,7 @@
51 51 return Math.abs( deltaX ) >= m_threshold || Math.abs( deltaY ) >= m_threshold;
52 52 }
53 53
54 + @Override
54 55 public void start( MouseEvent e )
55 56 {
56 57 if ( m_threshold == 0 )
  @@ -64,6 +65,7 @@
64 65 }
65 66 }
66 67
68 + @Override
67 69 public void step( DragEvent e )
68 70 {
69 71 if ( !m_started && equalsThreshold( e.getDeltaX(), e.getDeltaY() ) )
  @@ -77,6 +79,7 @@
77 79 }
78 80 }
79 81
82 + @Override
80 83 public void finish()
81 84 {
82 85 super.finish();