Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -319,17 +319,17 @@
319 319 return pPanel;
320 320 }
321 321
322 - protected Widget createLabel( @NotNull E13nData pE13nData )
322 + protected HTML createLabel( @NotNull E13nData pE13nData )
323 323 {
324 324 return createLabel( makeSafeHtml( getResolver().resolve( Objects.assertNotNull( "Label E13nData", pE13nData ) ) ) );
325 325 }
326 326
327 - protected Widget createLabel( @NotNull String pLabelTextCode )
327 + protected HTML createLabel( @NotNull String pLabelTextCode )
328 328 {
329 329 return createLabel( makeSafeHtml( getResolver().resolve( Strings.assertNotNullNotEmpty( "Label Text Code", pLabelTextCode ) ) ) );
330 330 }
331 331
332 - protected Widget createLabel( @NotNull SafeHtml pSafeHtml )
332 + protected HTML createLabel( @NotNull SafeHtml pSafeHtml )
333 333 {
334 334 return new HTML( Objects.assertNotNull( "Label SafeHtml", pSafeHtml ) );
335 335 }