blob: a365c831ff319ca7bc1aa919d07cc9d59580a48c [file] [log] [blame]
package org.eclipse.swt.custom;
/*
* Copyright (c) 2000, 2002 IBM Corp. All rights reserved.
* This file is made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*/
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);
}