01: /*******************************************************************************
02: * Copyright (c) 2003, 2006 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.ui;
11:
12: /**
13: * Interface for editor parts that represent an in-place style editor.
14: * <p>
15: * This interface is not intended to be implemented or extended by clients.
16: * </p>
17: *
18: * @see org.eclipse.ui.IEditorDescriptor#isOpenInPlace()
19: * @since 3.0
20: */
21: public interface IInPlaceEditor extends IEditorPart {
22: /**
23: * Informs the in-place editor that the system file it is
24: * editing was deleted by the application.
25: */
26: public void sourceDeleted();
27:
28: /**
29: * Informs the in-place editor that the system file it is
30: * editing was moved or renamed by the application.
31: *
32: * @param input the new in-place editor input to use
33: */
34: public void sourceChanged(IInPlaceEditorInput input);
35: }
|