{
if (DesignByContractAspect.verbose) System.out.println("[dbc] Found preconditions in method: " + currentConstructor);
addConstructorConditions(realConstructor, preConds, pre.value());
}
PostCond post = (PostCond)AnnotationElement.getAnyAnnotation(currentConstructor, PostCond.class);
if (post != null)
{
if (DesignByContractAspect.verbose) System.out.println("[dbc] Found postconditions in method: " + currentConstructor);
addConstructorConditions(realConstructor, postConds, post.value());
}
}