-- @atlcompiler atl2006 -- $Id: Config.atl 7250 2007-09-11 11:57:01Z dwagelaa $ library Config; -- adapt the following helper to reflect your file path helper context String def : path() : String = 'OWLMatching/' + self; -- adapt the following inclusion condition for your specific model helper context ECORE!"ecore::EClass" def : inclusionCondition() : Boolean = not ( self.name = 'EFactory' ); -- select whether or not to use fully qualified meta-class names (::) helper context ECORE!"ecore::ENamedElement" def : useQualifiedName() : Boolean = true; -- select whether or not to use fully qualified rule names (::) helper context ECORE!"ecore::ENamedElement" def : useQualifiedRuleName() : Boolean = false;