1 package org.bsf.listOfValues.client; 2 3 /** 4 * An interface to determine how an Object can be notified 5 * of a LOV change (for example when a user is added). 6 * 7 * @see LovManager (default implementation) 8 */ 9 public interface LovListener { 10 /** 11 * Called when a LOV has changed. 12 * 13 * @param p_lovOID The OID of the Lov that has changed. 14 */ 15 public void lovHasChanged( Long p_lovOID ); 16 } 17