blob: 03eeb98a3659e5521052e13f0a0144b4f928bcc5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 THALES GLOBAL SERVICES.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.sirius.ext.swt;
import org.eclipse.swt.widgets.Listener;
import org.eclipse.swt.widgets.Text;
/**
* Common interface for TextChangeListener.
*
* @author cbrun
*
*/
public interface TextChangeListener extends Listener {
/**
* Start listening to the text.
*
* @param text
* the text to listen.
*/
void startListeningTo(Text text);
/**
* Start listening for Enter.
*
* @param text
* the text to listen.
*/
void startListeningForEnter(Text text);
/**
* Stop listening to .
*
* @param text
* the text to listen.
*/
void stopListeningTo(Text text);
}