/* * $Id$ * * File is automatically generated by the Xtext language generator. * Do not change it. * * 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.lang.codebuilder.builders; import io.sarl.lang.core.Event; import io.sarl.lang.sarl.SarlEvent; import io.sarl.lang.sarl.SarlFactory; import io.sarl.lang.sarl.SarlScript; import java.util.function.Predicate; import javax.inject.Inject; import javax.inject.Provider; import org.eclipse.emf.common.notify.Adapter; import org.eclipse.emf.ecore.resource.Resource; import org.eclipse.emf.ecore.util.EcoreUtil; import org.eclipse.xtend.core.xtend.XtendFactory; import org.eclipse.xtext.common.types.JvmParameterizedTypeReference; import org.eclipse.xtext.common.types.JvmTypeReference; import org.eclipse.xtext.common.types.access.IJvmTypeProvider; import org.eclipse.xtext.util.EmfFormatter; import org.eclipse.xtext.util.Strings; import org.eclipse.xtext.xbase.compiler.DocumentationAdapter; import org.eclipse.xtext.xbase.lib.Pure; /** Builder of a Sarl SarlEvent. */ @SuppressWarnings("all") public class SarlEventBuilderImpl extends AbstractBuilder implements ISarlEventBuilder { private SarlEvent sarlEvent; @Override @Pure public String toString() { return EmfFormatter.objToStr(getSarlEvent()); } /** Initialize the Ecore element when inside a script. */ public void eInit(SarlScript script, String name, IJvmTypeProvider context) { setTypeResolutionContext(context); if (this.sarlEvent == null) { this.sarlEvent = SarlFactory.eINSTANCE.createSarlEvent(); script.getXtendTypes().add(this.sarlEvent); this.sarlEvent.setAnnotationInfo(XtendFactory.eINSTANCE.createXtendTypeDeclaration()); if (!Strings.isEmpty(name)) { this.sarlEvent.setName(name); } } } /** Replies the generated SarlEvent. */ @Pure public SarlEvent getSarlEvent() { return this.sarlEvent; } /** Replies the resource to which the SarlEvent is attached. */ @Pure public Resource eResource() { return getSarlEvent().eResource(); } /** Change the documentation of the element. * * <p>The documentation will be displayed just before the element. * * @param doc the documentation. */ public void setDocumentation(String doc) { if (Strings.isEmpty(doc)) { getSarlEvent().eAdapters().removeIf(new Predicate<Adapter>() { public boolean test(Adapter adapter) { return adapter.isAdapterForType(DocumentationAdapter.class); } }); } else { DocumentationAdapter adapter = (DocumentationAdapter) EcoreUtil.getExistingAdapter( getSarlEvent(), DocumentationAdapter.class); if (adapter == null) { adapter = new DocumentationAdapter(); getSarlEvent().eAdapters().add(adapter); } adapter.setDocumentation(doc); } } /** Change the super type. * @param superType - the qualified name of the super type, * or <code>null</code> if the default type. */ public void setExtends(String superType) { if (!Strings.isEmpty(superType) && !Event.class.getName().equals(superType)) { JvmParameterizedTypeReference superTypeRef = newTypeRef(this.sarlEvent, superType); JvmTypeReference baseTypeRef = findType(this.sarlEvent, Event.class.getCanonicalName()); if (isSubTypeOf(this.sarlEvent, superTypeRef, baseTypeRef)) { this.sarlEvent.setExtends(superTypeRef); return; } } this.sarlEvent.setExtends(null); } /** Add a modifier. * @param modifier - the modifier to add. */ public void addModifier(String modifier) { if (!Strings.isEmpty(modifier)) { this.sarlEvent.getModifiers().add(modifier); } } @Inject private Provider<ISarlConstructorBuilder> iSarlConstructorBuilderProvider; /** Create a SarlConstructor. * @return the builder. */ public ISarlConstructorBuilder addSarlConstructor() { ISarlConstructorBuilder builder = this.iSarlConstructorBuilderProvider.get(); builder.eInit(getSarlEvent(), getTypeResolutionContext()); return builder; } @Inject private Provider<ISarlFieldBuilder> iSarlFieldBuilderProvider; /** Create a SarlField. * @param name - the name of the SarlField. * @return the builder. */ public ISarlFieldBuilder addVarSarlField(String name) { ISarlFieldBuilder builder = this.iSarlFieldBuilderProvider.get(); builder.eInit(getSarlEvent(), name, "var", getTypeResolutionContext()); return builder; } /** Create a SarlField. * @param name - the name of the SarlField. * @return the builder. */ public ISarlFieldBuilder addValSarlField(String name) { ISarlFieldBuilder builder = this.iSarlFieldBuilderProvider.get(); builder.eInit(getSarlEvent(), name, "val", getTypeResolutionContext()); return builder; } /** Create a SarlField. * * <p>This function is equivalent to {@link #addVarSarlField}. * @param name - the name of the SarlField. * @return the builder. */ public ISarlFieldBuilder addSarlField(String name) { return this.addVarSarlField(name); } }