blob: 5a7648cd8b5cef935b937953553172c626100569 [file] [log] [blame]
package org.eclipse.swt.custom;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved
*/
import org.eclipse.swt.events.*;
/**
* This event is sent by the StyledTextContent implementor when a change to
* the text occurs.
*/
public class TextChangedEvent extends TypedEvent {
/**
* Create the TextChangedEvent to be used by the StyledTextContent implementor.
* <p>
*
* @param source the object that will be sending the TextChangedEvent, cannot be null
*/
public TextChangedEvent(StyledTextContent source) {
super(source);
}
}