blob: 48801dc25279e83a9a46b254a71891cb364f5b8d [file]
/*******************************************************************************
* Copyright (c) 24.04.2012 Aaron Digulla.
* 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:
* Aaron Digulla - initial API and implementation and/or initial documentation
*******************************************************************************/
package m4e.patch
import m4e.Pom;
/** A tool to apply a patch to a POM */
abstract class Patch {
abstract void apply( Pom pom )
}