Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -18,16 +18,14 @@
18 18
19 19 import com.google.gwt.user.client.*;
20 20
21 - public abstract class EventDelegateAdaptorBase
22 - {
21 + public abstract class EventDelegateAdaptorBase {
23 22 private final int m_eventBits;
24 23
25 24 /**
26 25 * Default constructor for convienence. Subclasses must override
27 26 * {@link #getEventBits()} if they want to process events.
28 27 */
29 - public EventDelegateAdaptorBase()
30 - {
28 + public EventDelegateAdaptorBase() {
31 29 m_eventBits = 0;
32 30 }
33 31
  @@ -38,13 +36,11 @@
38 36 *
39 37 * @see Event
40 38 */
41 - public EventDelegateAdaptorBase( int eventBits )
42 - {
39 + public EventDelegateAdaptorBase( int eventBits ) {
43 40 m_eventBits = eventBits;
44 41 }
45 42
46 - public int getEventBits()
47 - {
43 + public int getEventBits() {
48 44 return m_eventBits;
49 45 }
50 46 }