blob: 4dd8501d6b5b241bc206faa1c9cf44f58213830f [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2006 BEA Systems, Inc.
* 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 API and implementation
******************************************************************************/
package org.eclipse.jst.common.project.facet;
import org.eclipse.wst.common.project.facet.core.IDefaultVersionProvider;
import org.eclipse.wst.common.project.facet.core.IProjectFacetVersion;
/**
* Defaults the java facet version to align with workspace java compiler
* level settings.
*
* @author <a href="mailto:kosta@bea.com">Konstantin Komissarchik</a>
*/
public final class JavaFacetDefaultVersionProvider
implements IDefaultVersionProvider
{
public IProjectFacetVersion getDefaultVersion()
{
final String compilerLevel = JavaFacetUtils.getCompilerLevel();
return JavaFacetUtils.compilerLevelToFacet( compilerLevel );
}
}