Package net.java.textilej.validation

Examples of net.java.textilej.validation.ValidationProblem


      if (startOfLine) {
        String followingCharacter = matcher.group(2);
        if (followingCharacter == null || !followingCharacter.equals(" ")) {
          int problemLength = matcher.end(1)-start;
          String matched = matcher.group(1);
          return new ValidationProblem(ValidationProblem.Severity.WARNING,String.format("'%s' will not start a new block unless it is followed by a space character (' ')",matched),start,problemLength);
        }
      }
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of net.java.textilej.validation.ValidationProblem

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.