Package com.lewisd.maven.lint.rules

Examples of com.lewisd.maven.lint.rules.AbstractRule


            name2ruleMap.put(rule.getIdentifier(), rule);
        }

        StringBuilder buffer = new StringBuilder();
        for (Map.Entry<String, AbstractRule> entry : name2ruleMap.entrySet()) {
            AbstractRule rule = entry.getValue();
            buffer.
                    append("- ").
                    append(rule.getIdentifier()).
                    append("\n\n").
                    append(formatAsBlock(rule)).
                    append("\n\n");
        }
View Full Code Here

TOP

Related Classes of com.lewisd.maven.lint.rules.AbstractRule

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.