All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cflint.tools.CFTool Maven / Gradle / Ivy

Go to download

A static code analysis tool for ColdFusion (in the spirit of FindBugs and Lint). With CFLint, you are able to analyze your ColdFusion code base for code violations.

There is a newer version: 1.5.0
Show newest version
package com.cflint.tools;

import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;

import cfml.parsing.cfscript.CFExpression;
import net.htmlparser.jericho.Element;

public class CFTool {

	public static Element getNamedParent(Element elem, final String tagName) {
		elem = elem.getParentElement();
		while (elem != null && !elem.getName().equals(tagName)) {
			elem = elem.getParentElement();
		}
		return elem;
	}

	public static boolean toBoolean(final String value) {
		if (value == null) {
			return false;
		}
		return value.trim().equalsIgnoreCase("yes") || value.trim().equalsIgnoreCase("true");
	}
	
	public static Element getElementBefore(Element element, List elements) {
		if(element != null && elements != null && elements.indexOf(element) >0){
			return elements.get(elements.indexOf(element) - 1);
		}
		return null;
	}
	
	public static Map convertMap(Map map){
		Map retval = new HashMap();
		for(Entry entry: map.entrySet()){
			retval.put(entry.getKey().toString().toLowerCase(), entry.getValue());
		}
		return retval;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy