* @exception Exception if a processing error occurs
*/
public void begin(Attributes attributes) throws Exception
{
Context child = (Context) digester.peek(0);
EngineDeployer parent = (EngineDeployer) digester.peek(1);
Engine engine = null;
if (!(parent instanceof StandardEngine))
{
Method method = parent.getClass().getMethod("getEngine", null);
engine = (Engine) method.invoke(parent, null);
}
else
{
engine=(Engine)parent;