Home | History | Annotate | Download | only in util

Lines Matching defs:constraint

72         String methodBody, constraint, title;
239 // main class to execute; opcode/constraint; test purpose
290 if (md.constraint != null) {
291 details = "Constraint " + md.constraint + ", " + details;
427 // find the @title/@constraint in javadoc comment for this method
444 String title = null, constraint = null;
448 // now grep @title and @constraint
460 // constraint can be one line only
461 Matcher constraintM = Pattern.compile("@constraint (.*)").matcher(
464 constraint = constraintM.group(1);
465 constraint = constraint.trim();
466 // System.out.println("constraint: " + constraint);
469 .println("warning: no @constraint for for a VFE method:"
478 md.constraint = constraint;