Package org.gcontracts.domain

Examples of org.gcontracts.domain.Postcondition


        if (!processingContextInformation.isPostconditionsEnabled()) return;
        if (booleanExpression == null) return;

        final List<ConstructorNode> declaredConstructors = classNode.getDeclaredConstructors();

        contract.postconditions().and(methodNode, new Postcondition(blockStatement, booleanExpression, declaredConstructors.contains(methodNode)));
    }
View Full Code Here

TOP

Related Classes of org.gcontracts.domain.Postcondition

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.