blob: ee719963ffb79e8d464e78d443ed97bef96eefe1 [file] [log] [blame]
package org.eclipse.jface.text;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
/**
* Registered with a text viewer, viewport listeners are
* informed about changes of text viewer's viewport, i.e. that
* portion of the viewer's document that is visible in the viewer. <p>
* Clients may implement this interface.
*
* @see ITextViewer
*/
public interface IViewportListener {
/**
* Informs about viewport changes. The given vertical position
* is the new vertical scrolling offset measured in pixels.
*/
void viewportChanged(int verticalOffset);
}