All Downloads are FREE. Search and download functionalities are using the official Maven repository.

templates.commands.RemoveFromContainerCommand.vm Maven / Gradle / Ivy

#* @vtlvariable name="ctx" type="org.kevoree.modeling.kotlin.generator.GenerationContext" *#
#* @vtlvariable name="helper" type="org.kevoree.modeling.kotlin.generator.ProcessorHelperClass" *#
package ${helper.fqn($ctx, $ctx.basePackageForUtilitiesGeneration)}.container

class RemoveFromContainerCommand(val target : org.kevoree.modeling.api.KMFContainer, val mutatorType : org.kevoree.modeling.api.util.ActionType, val refName : String, val element : Any?) {
    fun run() {

#if($ctx.persistence)
        var casted = target as KMFContainerPersistenceImpl
        if(!casted.inResolution){
            target.reflexiveMutator(mutatorType,refName, element,true,true)
        }
    #else
        target.reflexiveMutator(mutatorType,refName, element,true,true)
#end

    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy