Author: knopp
Date: Wed Mar 19 04:22:37 2008
New Revision: 638791

URL: http://svn.apache.org/viewvc?rev=638791&view=rev
Log:
Made setSelectedTab non final

Modified:
    
wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/markup/html/tabs/TabbedPanel.java

Modified: 
wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/markup/html/tabs/TabbedPanel.java
URL: 
http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/markup/html/tabs/TabbedPanel.java?rev=638791&r1=638790&r2=638791&view=diff
==============================================================================
--- 
wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/markup/html/tabs/TabbedPanel.java
 (original)
+++ 
wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/markup/html/tabs/TabbedPanel.java
 Wed Mar 19 04:22:37 2008
@@ -37,46 +37,46 @@
  * content panels inside the TabbedPanel panel.
  * <p>
  * Example:
- * 
+ *
  * <pre>
- *                                 
+ *
  * List tabs=new ArrayList();
- *                                 
+ *
  * tabs.add(new AbstractTab(new Model(&quot;first tab&quot;)) {
- * 
+ *
  *   public Panel getPanel(String panelId)
  *   {
  *     return new TabPanel1(panelId);
  *   }
- *   
+ *
  * });
- *                                
+ *
  * tabs.add(new AbstractTab(new Model(&quot;second tab&quot;)) {
- * 
+ *
  *   public Panel getPanel(String panelId)
  *   {
  *     return new TabPanel2(panelId);
  *   }
- *                                 
+ *
  * });
- *                                
+ *
  * add(new TabbedPanel(&quot;tabs&quot;, tabs));
- * 
- * 
+ *
+ *
  * &lt;span wicket:id=&quot;tabs&quot; class=&quot;tabpanel&quot;&gt;[tabbed 
panel will be here]&lt;/span&gt;
- *                             
+ *
  * </pre>
- * 
+ *
  * </p>
- * 
+ *
  * <p>
  * For a complete example see the component references in wicket-examples 
project
  * </p>
- * 
+ *
  * @see org.apache.wicket.extensions.markup.html.tabs.ITab
- * 
+ *
  * @author Igor Vaynberg (ivaynberg at apache dot org)
- * 
+ *
  */
 public class TabbedPanel extends Panel
 {
@@ -92,7 +92,7 @@
 
        /**
         * Constructor
-        * 
+        *
         * @param id
         *            component id
         * @param tabs
@@ -158,7 +158,7 @@
 
        /**
         * Generates a loop item used to represent a specific tab's 
<code>li</code> element.
-        * 
+        *
         * @param tabIndex
         * @return new loop item
         */
@@ -224,7 +224,7 @@
        /**
         * Factory method for tab titles. Returned component can be anything 
that can attach to span
         * tags such as a fragment, panel, or a label
-        * 
+        *
         * @param titleId
         *            id of title component
         * @param titleModel
@@ -241,23 +241,23 @@
 
        /**
         * Factory method for links used to switch between tabs.
-        * 
+        *
         * The created component is attached to the following markup. Label 
component with id: title
         * will be added for you by the tabbed panel.
-        * 
+        *
         * <pre>
         *            &lt;a href=&quot;#&quot; 
wicket:id=&quot;link&quot;&gt;&lt;span wicket:id=&quot;title&quot;&gt;[[tab 
title]]&lt;/span&gt;&lt;/a&gt;
         * </pre>
-        * 
+        *
         * Example implementation:
-        * 
+        *
         * <pre>
         * protected WebMarkupContainer newLink(String linkId, final int index)
         * {
         *      return new Link(linkId)
         *      {
         *              private static final long serialVersionUID = 1L;
-        * 
+        *
         *              public void onClick()
         *              {
         *                      setSelectedTab(index);
@@ -265,7 +265,7 @@
         *      };
         * }
         * </pre>
-        * 
+        *
         * @param linkId
         *            component id with which the link should be created
         * @param index
@@ -288,12 +288,12 @@
 
        /**
         * sets the selected tab
-        * 
+        *
         * @param index
         *            index of the tab to select
-        * 
+        *
         */
-       public final void setSelectedTab(int index)
+       public void setSelectedTab(int index)
        {
                if (index < 0 || index >= tabs.size())
                {


Reply via email to