
io.sarl.maven.docs.generator.SARLSpecStandaloneSetup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of io.sarl.maven.docs.generator Show documentation
Show all versions of io.sarl.maven.docs.generator Show documentation
Provides Maven tools for generating the SARL documentation.
/*
* $Id: io/sarl/maven/docs/generator/SARLSpecStandaloneSetup.java v0.3.1 2016-01-23 23:01:10$
*
* SARL is an general-purpose agent programming language.
* More details on http://www.sarl.io
*
* Copyright (C) 2014-2015 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.docs.generator;
import com.google.inject.Guice;
import com.google.inject.Injector;
import com.google.inject.util.Modules;
import org.eclipse.emf.ecore.EPackage;
import org.jnario.spec.SpecRuntimeModule;
import org.jnario.spec.SpecStandaloneSetupGenerated;
import org.jnario.spec.spec.SpecPackage;
/** Class for setting up the injection mechanism in the Maven plugin.
*
* @author Stéphane Galland
* @version 0.3.1 2016-01-23 23:01:10
* @mavengroupid io.sarl.maven
* @mavenartifactid io.sarl.maven.docs.generator
*/
class SARLSpecStandaloneSetup extends SpecStandaloneSetupGenerated {
private static Injector injector;
/** Construct a setup configuration.
*/
SARLSpecStandaloneSetup() {
//
}
@Override
public Injector createInjectorAndDoEMFRegistration() {
if (injector != null) {
return injector;
}
EPackage.Registry.INSTANCE.put(SpecPackage.eINSTANCE.getNsURI(), SpecPackage.eINSTANCE);
injector = Guice.createInjector(
Modules.override(new SpecRuntimeModule()).with(new SARLDocModule()));
new SpecStandaloneSetupGenerated().register(injector);
return injector;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy