Home | History | Annotate | Download | only in build

Lines Matching defs:constraint

93         String methodBody, constraint, title;
578 // find the @title/@constraint in javadoc comment for this method
594 String title = null, constraint = null;
598 // now grep @title and @constraint
610 // constraint can be one line only
611 Matcher constraintM = Pattern.compile("@constraint (.*)").matcher(
614 constraint = constraintM.group(1);
615 constraint = constraint.trim();
616 // System.out.println("constraint: " + constraint);
619 .println("warning: no @constraint for for a VFE method:" + method + " in " +
628 md.constraint = constraint;