/* * $Id$ * * SARL is an general-purpose agent programming language. * More details on http://www.sarl.io * * Copyright (C) 2014-2017 the original authors or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package io.sarl.maven.compiler; import java.util.Iterator; import org.apache.maven.project.MavenProject; import org.arakhne.afc.vmutil.locale.Locale; import org.eclipse.emf.common.notify.Adapter; import org.eclipse.emf.common.notify.impl.AdapterImpl; import org.eclipse.emf.ecore.resource.ResourceSet; /** Adapter for linking Ecore objects to the Maven project. * * @author $Author: sgalland$ * @version $FullVersion$ * @mavengroupid $GroupId$ * @mavenartifactid $ArtifactId$ */ final class MavenProjectAdapter extends AdapterImpl { private final MavenProject project; private MavenProjectAdapter(MavenProject project) { this.project = project; } /** Replies the Maven project for the resource set. * * @param rs the manve project. * @return the maven project. */ public static MavenProject get(ResourceSet rs) { for (final Adapter a : rs.eAdapters()) { if (a instanceof MavenProjectAdapter) { return ((MavenProjectAdapter) a).project; } } throw new RuntimeException(Locale.getString(MavenProjectAdapter.class, "INVALID_LINK")); //$NON-NLS-1$ } /** Install the adapter. * * @param rs the resource set that will receive the project. * @param project the project. */ public static void install(ResourceSet rs, MavenProject project) { final Iterator<Adapter> iterator = rs.eAdapters().iterator(); while (iterator.hasNext()) { if (iterator.next() instanceof MavenProjectAdapter) { iterator.remove(); } } rs.eAdapters().add(new MavenProjectAdapter(project)); } }