org.jbeans
Class ConversionListenerAdapter

java.lang.Object
  |
  +--org.jbeans.ConversionListenerAdapter
All Implemented Interfaces:
ConversionListener, EventListener

public abstract class ConversionListenerAdapter
extends Object
implements ConversionListener

This class is a blank implementation of the ConversionListener interface It is abstract and implements every method of the listener with an empty implementation

Author:
Brian Pontarelli

Constructor Summary
ConversionListenerAdapter()
           
 
Method Summary
 void handleFailedConversion(ConversionEvent event)
          This handle method is called when the property value being set has been converted and the conversion failed
 void handlePostConversion(ConversionEvent event)
          This handle method is called when the property value being set has just been successfully auto-converted
 void handlePreConversion(ConversionEvent event)
          This handle method is called when the property value being set is going to be auto-converted but has not been converted yet.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ConversionListenerAdapter

public ConversionListenerAdapter()
Method Detail

handlePreConversion

public void handlePreConversion(ConversionEvent event)
This handle method is called when the property value being set is going to be auto-converted but has not been converted yet.
Specified by:
handlePreConversion in interface ConversionListener

handlePostConversion

public void handlePostConversion(ConversionEvent event)
This handle method is called when the property value being set has just been successfully auto-converted
Specified by:
handlePostConversion in interface ConversionListener

handleFailedConversion

public void handleFailedConversion(ConversionEvent event)
This handle method is called when the property value being set has been converted and the conversion failed
Specified by:
handleFailedConversion in interface ConversionListener