blob: e8e525ece8af6786cebcef0953c21a9a20d953c1 [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 LineStyleListener extends SWTEventListener {
/**
* This method is called when a line is about to be drawn in order to get the
* line's style information.
* <p>
*
* @param event.lineOffset line start offset (input)
* @param event.lineText line text (input)
* @param event.styles array of StyleRanges, need to be in order (output)
*/
public void lineGetStyle(LineStyleEvent event);
}