Examples of FieldConstraintDescr


Examples of org.drools.lang.descr.FieldConstraintDescr

        assertEquals( "com.sample",
                      this.walker.getPackageDescr().getName() );
        RuleDescr rule = (RuleDescr) this.walker.getPackageDescr().getRules().get( 0 );
        assertEquals( "test",
                      rule.getName() );
        FieldConstraintDescr fieldConstr = (FieldConstraintDescr) ((PatternDescr) rule.getLhs().getDescrs().get( 0 )).getDescrs().get( 0 );
        RestrictionConnectiveDescr restConnective = (RestrictionConnectiveDescr) fieldConstr.getRestrictions().get( 0 );
        assertEquals( 2,
                      restConnective.getRestrictions().size() );
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.