Home | History | Annotate | Download | only in build

Lines Matching full:constraint

97         String methodBody, constraint, title;
409 // main class to execute; opcode/constraint; test purpose
475 if (md.constraint != null) {
476 details = " Constraint " + md.constraint + ", " + details;
741 // find the @title/@constraint in javadoc comment for this method
757 String title = null, constraint = null;
761 // now grep @title and @constraint
773 // constraint can be one line only
774 Matcher constraintM = Pattern.compile("@constraint (.*)").matcher(
777 constraint = constraintM.group(1);
778 constraint = constraint.trim();
779 // System.out.println("constraint: " + constraint);
782 .println("warning: no @constraint for for a VFE method:"
791 md.constraint = constraint;