blob: 13dac00277753303e6f56ac369fc1a1d11126409 [file] [log] [blame]
david_williamscfdb2cd2004-11-11 08:37:49 +00001/*******************************************************************************
amywuecebb042007-04-10 20:07:35 +00002 * Copyright (c) 2001, 2005 IBM Corporation and others.
david_williamscfdb2cd2004-11-11 08:37:49 +00003 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
amywuecebb042007-04-10 20:07:35 +00007 *
david_williamscfdb2cd2004-11-11 08:37:49 +00008 * Contributors:
9 * IBM Corporation - initial API and implementation
10 * Jens Lukowski/Innoopract - initial renaming/restructuring
11 *
12 *******************************************************************************/
david_williams4ad020f2005-04-18 08:00:30 +000013package org.eclipse.wst.sse.ui.internal.provisional.extensions;
david_williamscfdb2cd2004-11-11 08:37:49 +000014
15
16
17/**
18 * This is a marker interface to control ValidateEdit call Usually framework
19 * calls IExtendedSimpleEditor#validateEdit() before calling
20 * IExtendedEditorAction's run() method. However, if the action implements
21 * this interface, framework won't call validateEdit() method.
22 *
23 * The action should call validateEdit() at their own appropriate timing.
24 */
25public interface ISelfValidateEditAction {
26
27}