Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/nonpublic/external/DragGestureWrapper.java

Diff revisions: vs.
  @@ -21,35 +21,29 @@
21 21 * {@link #start(int, int)}, {@link #step(int, int)} and
22 22 * {@link #finish(int, int)} methods called the delegate implementation.
23 23 */
24 - public class DragGestureWrapper implements DragGesture
25 - {
24 + public class DragGestureWrapper implements DragGesture {
26 25 private final DragGesture m_delegate;
27 26
28 - public DragGestureWrapper( DragGesture delegate )
29 - {
27 + public DragGestureWrapper( DragGesture delegate ) {
30 28 m_delegate = delegate;
31 29 }
32 30
33 - public DragGesture getDelegate()
34 - {
31 + public DragGesture getDelegate() {
35 32 return m_delegate;
36 33 }
37 34
38 35 @Override
39 - public void start( MouseEvent e )
40 - {
36 + public void start( MouseEvent e ) {
41 37 m_delegate.start( e );
42 38 }
43 39
44 40 @Override
45 - public void step( DragEvent e )
46 - {
41 + public void step( DragEvent e ) {
47 42 m_delegate.step( e );
48 43 }
49 44
50 45 @Override
51 - public void finish()
52 - {
46 + public void finish() {
53 47 m_delegate.finish();
54 48 }
55 49 }