KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sshtools > ui > swing > Tabber


1 /*
2  */

3 package com.sshtools.ui.swing;
4
5 import java.awt.Component JavaDoc;
6
7 /**
8  * @author magicthize
9  *
10  * To change the template for this generated type comment go to
11  * Window - Preferences - Java - Code Generation - Code and Comments
12  */

13 public interface Tabber {
14   
15   public int getTabCount();
16   
17   /**
18    *
19    *
20    * @param i
21    *
22    * @return
23    */

24   public abstract Tab getTabAt(int i);
25
26   /**
27    *
28    *
29    * @return
30    */

31   public abstract boolean validateTabs();
32
33   /**
34    *
35    */

36   public abstract void applyTabs();
37
38   /**
39    *
40    *
41    * @param tab
42    */

43   public abstract void addTab(Tab tab);
44
45   /**
46    *
47    *
48    * @param tab
49    */

50   public abstract Component JavaDoc getComponent();
51
52   /**
53    *
54    */

55   public abstract void removeAllTabs();
56 }
Popular Tags