Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -25,8 +25,7 @@
25 25 * or
26 26 * {@link asquare.gwt.tk.client.ui.behavior.EventDelegate#onBrowserEvent(Widget, Event) onBrowserEvent()}.
27 27 */
28 - public abstract class ControllerAdaptor extends EventDelegateAdaptor implements Controller
29 - {
28 + public abstract class ControllerAdaptor extends EventDelegateAdaptor implements Controller {
30 29 private final Class m_id;
31 30
32 31 /**
  @@ -34,8 +33,7 @@
34 33 *
35 34 * @param id the controller id
36 35 */
37 - public ControllerAdaptor( Class id )
38 - {
36 + public ControllerAdaptor( Class id ) {
39 37 this( 0, id );
40 38 }
41 39
  @@ -46,8 +44,7 @@
46 44 * interested in
47 45 * @param id the controller id
48 46 */
49 - public ControllerAdaptor( int eventBits, Class id )
50 - {
47 + public ControllerAdaptor( int eventBits, Class id ) {
51 48 super( eventBits );
52 49 m_id = id;
53 50 }
  @@ -57,8 +54,7 @@
57 54 * @see asquare.gwt.tk.client.ui.behavior.Controller#getId()
58 55 */
59 56 @Override
60 - public Class getId()
61 - {
57 + public Class getId() {
62 58 return m_id;
63 59 }
64 60
  @@ -67,8 +63,7 @@
67 63 * @see asquare.gwt.tk.client.ui.behavior.Controller#plugIn(com.google.gwt.user.client.ui.Widget)
68 64 */
69 65 @Override
70 - public void plugIn( Widget widget )
71 - {
66 + public void plugIn( Widget widget ) {
72 67 }
73 68
74 69 /*
  @@ -76,7 +71,6 @@
76 71 * @see asquare.gwt.tk.client.ui.behavior.Controller#unplug(com.google.gwt.user.client.ui.Widget)
77 72 */
78 73 @Override
79 - public void unplug( Widget widget )
80 - {
74 + public void unplug( Widget widget ) {
81 75 }
82 76 }