blob: 21c9ff4e14a6a956c42dbd3ebb38b49c0fb1b3c0 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2006 IBM Corporation.
* 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 Implementation
*
*****************************************************************************/
package org.eclipse.ptp.launch.rulesengine;
import org.eclipse.core.runtime.CoreException;
public interface IRuleAction {
public void run() throws CoreException;
}