blob: d7897b99edd00169a59a0a50481a6e10de975f34 [file] [log] [blame]
package org.eclipse.ui.tests.dialogs;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.widgets.Shell;
/**
* FOR USE BY TESTS ONLY!
* <p>
* Stub class that provides access to classes visible to the package
* <code>org.eclipse.ui.texteditor</code>. For the purpose of
* testing.
* </p>
* @private
*/
public class TextEditorTestStub {
//Prevent instantiation
private TextEditorTestStub(){}
/**
* Gives access to an instance of FindReplaceDialog.
* @return FindReplaceDialog an instance of FindReplaceDialog.
*/
/**
* 1GJWD2E: ITPUI:ALL - Test classes should not be released in public packages.
*
public static FindReplaceDialog newFindReplaceDialog(Shell parentShell) {
return new FindReplaceDialog(parentShell);
}
*/
}