oTCGOCLExpression = oAtom;
oTCGOCLExpression.setClassification(classifyOCLExpression(oVarExp, in_sOCLTypeId));
}
else if(in_oExpression instanceof PropertyCallExp)
{
PropertyCallExp oPropExp = (PropertyCallExp)in_oExpression;
TCGOCLAtom oAtom = GeneratedFactory.eINSTANCE.createTCGOCLAtom();
// do not use the directly referenced property but the property closest to the given context
oAtom.setElement((EObject)TestCaseGraphHelper.findMatchingPropertyInContext(
oPropExp.getReferredProperty(), oContextClass));
oTCGOCLExpression = oAtom;
oTCGOCLExpression.setClassification(classifyOCLExpression(oPropExp, in_sOCLTypeId));
}
else if(in_oExpression instanceof OperationCallExp)
{