Skip to main content
summaryrefslogblamecommitdiffstats
blob: eb6c44eabfec94db6b65521ddb4e0a5979082db0 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                    
/*
 * Licensed Materials - Property of IBM,
 * WebSphere Studio Workbench
 * (c) Copyright IBM Corp 2000,2001
 */
package org.eclipse.compare.internal;

import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.swt.widgets.Shell;


public class AddFromHistoryDialog extends Dialog {

	public AddFromHistoryDialog(Shell parent) {
		super(parent);
	}	
}

Back to the top