Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5a7648cd8b5cef935b937953553172c626100569 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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);
}
}

Back to the top