Goal
This callback will only be fired if the Goal's own action, as defined by {@link Action#performAction} isslated to be fired.
8889909192939495969798
* then run all the current targets */ public void doTag(final XMLOutput output) throws Exception { getGoal(getName()).addPreActionCallback( new PreActionCallback() { public void firePreAction(Goal goal) throws Exception { // lets run the body log.debug( "Running pre action: " + getName() ); invokeBody( output); }
9293949596979899100101102
*/ public void doTag( final XMLOutput output ) throws JellyTagException { getGoal( getName() ).addPreActionCallback( new PreActionCallback() { public void firePreAction( Goal goal ) throws Exception { // lets run the body
9899100101102103104105106107108