com.japisoft.multipanes
Interface TitledPaneModel

All Known Implementing Classes:
DefaultTitledPaneModel

public interface TitledPaneModel

Interface for the model containing a set of TitledPane


Method Summary
 void addTitledPane(TitledPane tp)
          Add a new titledPane component
 TitledPane getTitledPaneAt(int location)
           
 TitledPane getTitledPaneByName(java.lang.String name)
           
 int getTitledPaneCount()
           
 void insertTitledPane(int index, TitledPane tp)
          Insert a titledPane at a specific location
 void removeTitledPane(TitledPane tp)
          Remove a previously inserted component
 

Method Detail

addTitledPane

public void addTitledPane(TitledPane tp)
Add a new titledPane component


removeTitledPane

public void removeTitledPane(TitledPane tp)
Remove a previously inserted component


insertTitledPane

public void insertTitledPane(int index,
                             TitledPane tp)
Insert a titledPane at a specific location


getTitledPaneByName

public TitledPane getTitledPaneByName(java.lang.String name)
Returns:
a titledPane matching the parameter name

getTitledPaneCount

public int getTitledPaneCount()
Returns:
the number of titledPane

getTitledPaneAt

public TitledPane getTitledPaneAt(int location)
Returns:
a titledPane for a location starting at 0