net.databinder.components
Class SourceList

java.lang.Object
  extended by net.databinder.components.SourceList
All Implemented Interfaces:
java.io.Serializable

public class SourceList
extends java.lang.Object
implements java.io.Serializable

Generator for links to components (usually panels) that are only visible one at a time. Similar to TabbedPanel, but the links and target component can be placed anywhere in the associated markup template. Ex:

 SourceList sl = new SourceList();
 add(sl.new SourceLink("link-a", new MyPanel("panel-a")));
 add(sl.new SourceLink("link-b", new MyOtherPanel("panel-b")));
 

Author:
Nathan Hamblen
See Also:
Serialized Form

Nested Class Summary
 class SourceList.SourceLink
          Link that that causes the paired component to be visible when clicked, and all other components in the SourceList to be invisible.
 
Constructor Summary
SourceList()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SourceList

public SourceList()


Copyright © 2005-2008 Nathan Hamblen. All Rights Reserved.