Revision 2754 org.gvsig.tools/library/trunk/org.gvsig.tools/org.gvsig.tools.dynform/org.gvsig.tools.dynform.spi/src/main/java/org/gvsig/tools/dynform/spi/dynformset/AbstractJDynFormSet.java

View differences:

AbstractJDynFormSet.java
360 360
        return defaultVaue;
361 361
    }
362 362
    
363
    protected void callUserEvent(String name, Object... args) {
364
        try {
365
            JDynForm form = this.getForm();
366
            form.callUserFunction(name, args);
367
        } catch(NoSuchMethodException ex) {
368
            LOGGER.debug("Function '"+name+"' not found.", ex);
369
            // Do nothing
370
        } catch(Exception ex) {
371
            LOGGER.warn("Error calling form event '"+name+"'.", ex);
372
        }
373
    }
363 374
}

Also available in: Unified diff