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

it.xsemantics.runtime.caching.util.XsemanticsCacheUtils.xtend Maven / Gradle / Ivy

There is a newer version: 1.12.1
Show newest version
package it.xsemantics.runtime.caching.util

import org.eclipse.emf.ecore.EObject

/**
 * Utility functions for caching.
 * 
 * @author Lorenzo Bettini
 * 
 * @since 1.8
 */
class XsemanticsCacheUtils {
	
	def getResource(Object...elements) {
		elements.filter(EObject).head?.eResource
	}

	def getKeys(Object...elements) {
		elements.reduce[p1, p2| p1 -> p2]
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy