blob: 1af4622dbf3bbe6a6cc3c1f122409f5dc593f5fc [file] [log] [blame]
/***********************************************************************
* Copyright (c) 2008 by SAP AG, Walldorf.
* 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:
* SAP AG - initial API and implementation
***********************************************************************/
package org.eclipse.jst.jee.model.internal.mergers;
import java.util.List;
/**
* Base interface for all merger classes.
*
* @author Dimitar Giormov
*/
public interface IMerger {
/**
* Process method is the actual merge process. It will generate list of warnngs or throw exception.
*
* @return list of warnings gathered during execution.
* @throws Exception
*/
public abstract List process() throws Exception;
}