Package org.cfeclipse.cfml.editors.pairs

Examples of org.cfeclipse.cfml.editors.pairs.Pair


  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);
View Full Code Here

TOP

Related Classes of org.cfeclipse.cfml.editors.pairs.Pair

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.