Skip to main content
summaryrefslogtreecommitdiffstats
blob: 88ac71dbfd518122b4f679b9aeca7e195b08c4b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved.
 */
package org.eclipse.compare.internal;

public interface INavigatable {
	
	static final String NAVIGATOR_PROPERTY= "org.eclipse.compare.internal.Navigator"; //$NON-NLS-1$
	
	/**
	 * Returns true if at end or beginning.
	 */
	boolean gotoDifference(boolean next);
}

Back to the top