public CFMLEditor() {
super();
// this is for bracket matching
//create the pairs for testing
Pair parenthesis = new Pair("(", ")", 1);
Pair curlyBraces = new Pair("{", "}", 1);
Pair squareBraces = new Pair("[", "]", 1);
//create the collection
LinkedList brackets = new LinkedList();
brackets.add(parenthesis);
brackets.add(curlyBraces);