Files
libreoffice/odk/examples/DevelopersGuide/Forms/ComponentTreeTraversal.java
Vladimir Glazounov 22a66e28e1 INTEGRATION: CWS sdk02 (1.1.2); FILE ADDED
2003/05/09 11:26:41 jsc 1.1.2.1: #109045# insert new and remove example zip file
2003-06-10 09:24:06 +00:00

58 lines
1.9 KiB
Java

import com.sun.star.uno.*;
import com.sun.star.container.*;
import com.sun.star.lang.*;
/**************************************************************************/
/** an abstract interface for components doing an action on a form component
*/
interface IFormComponentAction
{
public abstract void handle( Object aFormComponent ) throws java.lang.Exception;
};
/**************************************************************************/
/** a helper class for travelling a form component tree
*/
class ComponentTreeTraversal implements IFormComponentAction
{
/* ------------------------------------------------------------------ */
/** Indicator method to decide wether to step down the tree.
<p>The default implementation checks if the container given is a grid
control model or a <service scope="com.sun.star.form">FormComponents</service>
instance.</p>
*/
protected boolean shouldStepInto( XIndexContainer xContainer ) throws com.sun.star.uno.Exception
{
// step down the tree, if possible
XServiceInfo xSI = UNO.queryServiceInfo( xContainer );
if ( null != xSI
&& ( xSI.supportsService( "com.sun.star.form.FormComponents" )
|| xSI.supportsService( "com.sun.star.form.component.GridControl" )
)
)
{
return true;
}
else
{
return false;
}
}
/* ------------------------------------------------------------------ */
public void handle( Object aFormComponent ) throws com.sun.star.uno.Exception
{
XIndexContainer xCont = UNO.queryIndexContainer( aFormComponent );
if ( ( null != xCont )
&& shouldStepInto( xCont )
)
{
for ( int i=0; i<xCont.getCount(); ++i )
{
handle( xCont.getByIndex( i ) );
}
}
}
}