Subversion Repository Public Repository

litesoft

Diff Revisions 948 vs 950 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/sliderbar/client/presenter/Display.java

Diff revisions: vs.
  @@ -1,42 +1,42 @@
1 - package org.litesoft.GWT.client.widgets.sliderbar.client.presenter;
2 -
3 - import org.litesoft.GWT.client.widgets.sliderbar.client.presenter.Presenter.*;
4 - import org.litesoft.GWT.client.widgets.sliderbar.client.view.*;
5 -
6 - import com.google.gwt.event.dom.client.*;
7 - import com.google.gwt.user.client.ui.*;
8 -
9 - import java.util.*;
10 -
11 - public interface Display {
12 -
13 - Widget getRootWidget();
14 -
15 - ArrayList<Widget> getMoreWidgets();
16 -
17 - ArrayList<Widget> getLessWidgets();
18 -
19 - Widget getDragWidget();
20 -
21 - Widget getScaleWidget();
22 -
23 - int getAbsMaxLength();
24 -
25 - Orientation getOrientation();
26 -
27 - int getScaleTouchPosition( MouseEvent event );
28 -
29 - int getDragPosition();
30 -
31 - void setDragPosition( int position );
32 -
33 - void drawScrollBar( int barPixelSize );
34 -
35 - Widget asWidget();
36 -
37 - void putMark( Mark mark, int markPosition );
38 -
39 - public boolean isAttached();
40 -
41 - void setDragVisible( boolean isVisible );
42 - }
1 + package org.litesoft.GWT.client.widgets.sliderbar.client.presenter;
2 +
3 + import org.litesoft.GWT.client.widgets.sliderbar.client.presenter.Presenter.*;
4 + import org.litesoft.GWT.client.widgets.sliderbar.client.view.*;
5 +
6 + import com.google.gwt.event.dom.client.*;
7 + import com.google.gwt.user.client.ui.*;
8 +
9 + import java.util.*;
10 +
11 + public interface Display {
12 +
13 + Widget getRootWidget();
14 +
15 + ArrayList<Widget> getMoreWidgets();
16 +
17 + ArrayList<Widget> getLessWidgets();
18 +
19 + Widget getDragWidget();
20 +
21 + Widget getScaleWidget();
22 +
23 + int getAbsMaxLength();
24 +
25 + Orientation getOrientation();
26 +
27 + int getScaleTouchPosition( MouseEvent event );
28 +
29 + int getDragPosition();
30 +
31 + void setDragPosition( int position );
32 +
33 + void drawScrollBar( int barPixelSize );
34 +
35 + Widget asWidget();
36 +
37 + void putMark( Mark mark, int markPosition );
38 +
39 + public boolean isAttached();
40 +
41 + void setDragVisible( boolean isVisible );
42 + }