TabbedPanel accepts only ITab(s)
--------------------------------

                 Key: WICKET-2153
                 URL: https://issues.apache.org/jira/browse/WICKET-2153
             Project: Wicket
          Issue Type: Improvement
          Components: wicket-extensions
    Affects Versions: 1.4-RC2
            Reporter: SoulSpirit
            Priority: Minor


TabbedPanel manages a List of ITab(s).
This prevents instantiation of TabbedPanel(s) made of any custom ITab 
implementation.

Every reference to List<ITab> should be converted to List<? extends ITab>.
Alternatively, TabbedPanel should be declared as:
public class TabbedPanel<T extends ITab> extends Panel{}
depending on the preferred strategy.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to