Skip to main content
summaryrefslogblamecommitdiffstats
blob: 85ffba16e3f02bd6735de7b8e899978baf1a9405 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
   

                                       






                                             
                                                      

















                                                                 
/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved.
 */
package org.eclipse.compare.internal;

import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.Viewer;


public abstract class AbstractViewer extends Viewer {

	public void setInput(Object input) {
	}
	
	public Object getInput() {
		return null;
	}
	
	public ISelection getSelection() {
		return null;
	}
	
	public void setSelection(ISelection s, boolean reveal) {
	}
	
	public void refresh() {
	}
}

Back to the top