Subversion Repository Public Repository

litesoft

Diff Revisions 2 vs 23 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/view/QBEdialogView.java

Diff revisions: vs.
  @@ -62,6 +62,7 @@
62 62 mFE.setFocus();
63 63 }
64 64
65 + @Override
65 66 public final void execute( T pRowValue )
66 67 {
67 68 if ( pRowValue == null )
  @@ -71,6 +72,7 @@
71 72 }
72 73 mDataProvider.requestRow( pRowValue.getObjectURL(), new FetchRowDataProviderCallBack<T>()
73 74 {
75 + @Override
74 76 public void success( T pRow )
75 77 {
76 78 if ( pRow != null )
  @@ -81,6 +83,7 @@
81 83 error( "Data no longer exists!" );
82 84 }
83 85
86 + @Override
84 87 public void error( String pError )
85 88 {
86 89 AlertManager.alert( mTitle, mTitle, pError );