com.guiseframework.event
Interface CompositeComponentListener

All Superinterfaces:
java.util.EventListener, GuiseEventListener
All Known Implementing Classes:
AbstractComponentDepictor.DepictedCompositeComponentListener

public interface CompositeComponentListener
extends GuiseEventListener

An object that listens for components being added to or removed from a composite component.

Author:
Garret Wilson

Method Summary
 void childComponentAdded(ComponentEvent childComponentEvent)
          Called when a child component is added to a composite component.
 void childComponentRemoved(ComponentEvent childComponentEvent)
          Called when a child component is removed from a composite component.
 

Method Detail

childComponentAdded

void childComponentAdded(ComponentEvent childComponentEvent)
Called when a child component is added to a composite component.

Parameters:
childComponentEvent - The event indicating the added child component and the target parent composite component.

childComponentRemoved

void childComponentRemoved(ComponentEvent childComponentEvent)
Called when a child component is removed from a composite component.

Parameters:
childComponentEvent - The event indicating the removed child component and the target parent composite component.


Copyright © 2005-2010 GlobalMentor, Inc. All Rights Reserved.