postConditions.put(constructor, post);
}
private static void addConstructorConditions(Constructor<?> realConstructor, Constructor<?> currentConstructor, ArrayList<ExecutableCondition> preConds, ArrayList<ExecutableCondition> postConds)
{
PreCond pre = (PreCond)AnnotationElement.getAnyAnnotation(currentConstructor, PreCond.class);
if (pre != null)
{
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)
{