Subversion Repository Public Repository

litesoft

Diff Revisions 803 vs 804 for /trunk/mobileGWT/mgwtPlus/src/org/litesoft/mgwt/client/pavsupport/AbstractBackableViewImpl.java

Diff revisions: vs.
  @@ -321,7 +321,7 @@
321 321
322 322 protected Widget createLabel( @NotNull E13nData pE13nData )
323 323 {
324 - return createLabel( makeSafeHtml( getResolver().resolve( UtilsCommon.assertNotNull( "Label E13nData", pE13nData ) ) ) );
324 + return createLabel( makeSafeHtml( getResolver().resolve( Objects.assertNotNull( "Label E13nData", pE13nData ) ) ) );
325 325 }
326 326
327 327 protected Widget createLabel( @NotNull String pLabelTextCode )
  @@ -331,7 +331,7 @@
331 331
332 332 protected Widget createLabel( @NotNull SafeHtml pSafeHtml )
333 333 {
334 - return new HTML( UtilsCommon.assertNotNull( "Label SafeHtml", pSafeHtml ) );
334 + return new HTML( Objects.assertNotNull( "Label SafeHtml", pSafeHtml ) );
335 335 }
336 336
337 337 protected SafeHtml makeSafeHtml( String pText )
  @@ -348,7 +348,7 @@
348 348 protected Widget createFormListEntry( @NotNull String pLabelTextCode, @NotNull Widget pInputWidget )
349 349 {
350 350 return new FormListEntry( getResolver().resolve( UtilsCommon.assertNotNullNotEmpty( "Label Text Code", pLabelTextCode ) ), //
351 - UtilsCommon.assertNotNull( "InputWidget", pInputWidget ) );
351 + Objects.assertNotNull( "InputWidget", pInputWidget ) );
352 352 }
353 353
354 354 protected <T> RadioGroup<T> createInputRadioGroup( @Nullable SelectedListener<T> pSelectedListener )
  @@ -456,7 +456,7 @@
456 456 @Override
457 457 public void showError( @NotNull String pTitleCode, @NotNull E13nData pErrorData )
458 458 {
459 - alert( pTitleCode, getResolver().resolve( UtilsCommon.assertNotNull( "Error Data", pErrorData ) ), null );
459 + alert( pTitleCode, getResolver().resolve( Objects.assertNotNull( "Error Data", pErrorData ) ), null );
460 460 }
461 461
462 462 // Dialogs