Package org.cfeclipse.cfml.snippets.properties

Examples of org.cfeclipse.cfml.snippets.properties.CFMLPropertyManager


     * snippets. Hopefully this will make it backwards compatible and it
     * will work for all users now I couldnt get it working without this.
     */
    if (!snippetFile.exists()) {

        CFMLPropertyManager propertyManager = SnippetPlugin.getDefault().getPropertyManager();
      this.snippetFile = new File(propertyManager.getSnippetsPath()
          + fileName);

    }

    if (snippetFile.exists()) {
View Full Code Here


    private String keyComboFilePath = "";
    private String snippetFilePath = "";
    private static String HEADER_TEXT = "These key combos are used by the cfeclipse plugin.";
   
    public SnipKeyCombos() {
    CFMLPropertyManager propertyManager = SnippetPlugin.getDefault().getPropertyManager();
    this.snippetFilePath = new File(propertyManager.getSnippetsPath()).toString();
    this.keyComboFilePath = this.snippetFilePath + "/keyCombos.properties";
      
        loadKeyCombos();
    }
View Full Code Here

    CFPluginImages.initCFPluginImages();
    this.propertyStore = new PreferenceStore(SnippetPlugin.getDefault().getStateLocation().toString()
        + "/properties.ini");
    fPreferenceManager = new CFMLPreferenceManager();
    try {
      fPropertyManager = new CFMLPropertyManager();
    } catch (Exception e) {
      e.printStackTrace();
      System.out.println(e);
    }
    getWorkbench().getActiveWorkbenchWindow().getSelectionService().addSelectionListener(fPropertyManager.getListener());
View Full Code Here

TOP

Related Classes of org.cfeclipse.cfml.snippets.properties.CFMLPropertyManager

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.