1 28 29 package org.objectweb.openccm.uml.transformation.ast; 30 31 import ispuml.mdaTransformation.model.SimpleConceptNamesTranslator; 32 import ispuml.mdaTransformation.model.SimpleModelContext; 33 34 import org.objectweb.openccm.ast.api.Scope; 35 36 41 public class CCMASTModelContext extends SimpleModelContext 42 { 43 44 50 public CCMASTModelContext(Scope scope) 51 { 52 setNameTranslator( new SimpleConceptNamesTranslator() ); 53 setProperty( new CCMPropertyUtil() ); 54 setModelUtil( new CCMASTModelUtil(getProperty(), scope) ); 55 } 56 57 } 58 | Popular Tags |