Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.ui/refactor/org/eclipse/cdt/internal/ui/refactoring/IChangePreviewViewer.java')
-rw-r--r--core/org.eclipse.cdt.ui/refactor/org/eclipse/cdt/internal/ui/refactoring/IChangePreviewViewer.java53
1 files changed, 0 insertions, 53 deletions
diff --git a/core/org.eclipse.cdt.ui/refactor/org/eclipse/cdt/internal/ui/refactoring/IChangePreviewViewer.java b/core/org.eclipse.cdt.ui/refactor/org/eclipse/cdt/internal/ui/refactoring/IChangePreviewViewer.java
deleted file mode 100644
index 59f7f97a7ed..00000000000
--- a/core/org.eclipse.cdt.ui/refactor/org/eclipse/cdt/internal/ui/refactoring/IChangePreviewViewer.java
+++ /dev/null
@@ -1,53 +0,0 @@
-/**********************************************************************
- * Copyright (c) 2004 Rational Software Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v0.5
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v05.html
- *
- * Contributors:
- * IBM Rational Software - Initial API and implementation
-***********************************************************************/
-package org.eclipse.cdt.internal.ui.refactoring;
-
-import org.eclipse.swt.widgets.Composite;
-import org.eclipse.swt.widgets.Control;
-
-import org.eclipse.core.runtime.CoreException;
-
-/**
- * Presents a preview of a <code>ChangeElement</code>
- */
-public interface IChangePreviewViewer {
-
- /**
- * Creates the preview viewer's widget hierarchy. This method
- * should only be called once. Method <code>getControl()</code>
- * should be use retrieve the widget hierarchy.
- *
- * @param parent the parent for the widget hierarchy
- *
- * @see #getControl()
- */
- public void createControl(Composite parent);
-
- /**
- * Returns the preview viewer's SWT control.
- *
- * @return the preview viewer's SWT control
- */
- public Control getControl();
-
- /**
- * Sets the preview viewer's input element.
- *
- * @param input the input element
- */
- public void setInput(Object input) throws CoreException;
-
- /**
- * Refreshes the preview viewer.
- */
- public void refresh();
-}
-

Back to the top