blob: 48c5929f83480fd039970ac6cbfb5cf77e15e40a [file] [log] [blame]
package org.eclipse.swt.custom;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved
*/
import org.eclipse.swt.internal.SWTEventListener;
public interface ExtendedModifyListener extends SWTEventListener {
/**
* This method is called after a text change occurs.
* <p>
*
* @param event.start the start offset of the new text (input)
* @param event.length the length of the new text (input)
* @param event.replacedText the replaced text (input)
*/
public void modifyText(ExtendedModifyEvent event);
}