A simple helper class that makes it easy to activate a whole set of
objects of which some may be
Active . For example:
// helper method in some container...
protected void startAllComponents( Object[] components )
{
for( int i = 0; i < components.length; i++ )
{
component = components[i];
LifecycleUtil.initialize( component );
}
}
author: Leo Simons version: $Id: LifecycleUtil.java,v 1.1 2004/03/23 13:37:58 lsimons Exp $ |