blob: eb8ce11908e85a7c2f5aa49e8c94bf5c1b93608f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.texteditor;
/**
* Indicates the support of an update method.
*/
public interface IUpdate {
/**
* Requests that this object update itself.
*/
void update();
}