Does nobody have an idea? This code prevents me from making progress in
converting our application to Wicket 1.5.

Tom


On 06.02.2012 18:06, Thomas Singer wrote:
> I need help for converting our application from Wicket 1.4 to 1.5. We have
> following code:
> 
>   MarkupContainer container = ...
>   ...
>   MarkupStream markupStream = container.getMarkupStream();
>   if (markupStream == null) {
>       return null;
>   }
> 
>   Class tagMarkupClass = markupStream.atTag()
>       ? markupStream.getTag().getMarkupClass()
>       : null;
>   if (tagMarkupClass == null) {
>       return markupStream.getContainerClass();
>   }
> 
>   return tagMarkupClass;
> 
> How to write it using Wicket 1.5? Thanks in advance.
> 
> Tom
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
> 
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to