Wicket 1.4 code:

final class FooFilter extends AbstractMarkupFilter {

  public MarkupElement nextTag() throws ParseException {
    ComponentTag tag = (ComponentTag)getParent().nextTag();
    ...
  }
}

Should I replace it with

final class FooFilter extends AbstractMarkupFilter {

  protected MarkupElement onComponentTag(ComponentTag tag)
    throws ParseException {
    ...
  }
}

What if we casted tag not to ComponentTag but XmlTag?

Needless to say, that
<https://cwiki.apache.org/WICKET/migration-to-wicket-15.html> does not tell
anything about AbstractMarkupFilter, ComponentTag or WicketTag.

Tom

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

Reply via email to