Revision: 1661 http://svn.sourceforge.net/spring-rich-c/?rev=1661&view=rev Author: kevinstembridge Date: 2007-01-12 13:57:38 -0800 (Fri, 12 Jan 2007)
Log Message: ----------- Added javadoc Modified Paths: -------------- trunk/spring-richclient/support/src/main/java/org/springframework/richclient/command/GroupContainerPopulator.java Modified: trunk/spring-richclient/support/src/main/java/org/springframework/richclient/command/GroupContainerPopulator.java =================================================================== --- trunk/spring-richclient/support/src/main/java/org/springframework/richclient/command/GroupContainerPopulator.java 2007-01-12 20:45:38 UTC (rev 1660) +++ trunk/spring-richclient/support/src/main/java/org/springframework/richclient/command/GroupContainerPopulator.java 2007-01-12 21:57:38 UTC (rev 1661) @@ -19,14 +19,38 @@ import java.awt.Container; /** + * A strategy interface for adding components to an underlying [EMAIL PROTECTED] Container}. + * * @author Keith Donald + * + * @see Container */ public interface GroupContainerPopulator { + + /** + * Returns the underlying container that this instance is responsible for populating. + * + * @return The underlying container, never null. + */ public Container getContainer(); + /** + * Adds the given component to the underlying container. + * + * @param component The component to be added. Must not be null. + * + * @throws IllegalArgumentException if [EMAIL PROTECTED] component} is null. + */ public void add(Component component); + /** + * Adds a separator to the underlying container. + */ public void addSeparator(); + /** + * Called to perform any required actions once the container has been populated. + */ public void onPopulated(); -} \ No newline at end of file + +} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ spring-rich-c-cvs mailing list spring-rich-c-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/spring-rich-c-cvs