blob: 9c24b639fd1f6369d5a782b29435fc11831c8e8e [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2008 Oracle
* 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:
* Konstantin Komissarchik - initial implementation and ongoing maintenance
******************************************************************************/
package org.eclipse.wst.common.project.facet.core;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.wst.common.project.facet.core.internal.FacetCorePlugin;
/**
* @author <a href="mailto:konstantin.komissarchik@oracle.com">Konstantin Komissarchik</a>
*/
public interface IFacetedProjectValidator
{
/**
* The marker type that should be used as the base for all markers reported
* by the faceted project validator.
*/
static final String BASE_MARKER_ID
= FacetCorePlugin.PLUGIN_ID + ".validation.marker"; //$NON-NLS-1$
void validate( IFacetedProject fproj )
throws CoreException;
}