Examples of CFMLPropertyManager


Examples of org.cfeclipse.cfml.properties.CFMLPropertyManager

    }
    return currentTag;
  }

  public void expandTagSelection(IDocument doc, ITextSelection sel) {
    CFMLPropertyManager propertyManager = new CFMLPropertyManager();
    String dict = propertyManager.getCurrentDictionary(((IFileEditorInput) editor.getEditorInput()).getFile().getProject());
    CFMLParser fCfmlParser = CFMLPlugin.newCFMLParser(dict);
    ICFDocument cfd = (ICFDocument) doc;
    CFMLSource cfmlSource = fCfmlParser.addCFMLSource(cfd.getCFDocument().getFilename(), cfd.get());
    int offset = sel.getOffset();
    ParserTag currentTag = getNextTagLeft(offset, cfmlSource);
View Full Code Here

Examples of org.cfeclipse.cfml.properties.CFMLPropertyManager

    IEditorInput input = this.editor.getEditorInput();
    if (input instanceof FileEditorInput) {
      FileEditorInput fileInput = (FileEditorInput) input;

      CFMLPropertyManager manager = new CFMLPropertyManager();
      String urldest = manager.helpURL(fileInput.getFile().getProject());
      String query = "";

      IDocument doc = editor.getDocumentProvider().getDocument(editor.getEditorInput());
      ITextSelection sel = (ITextSelection) editor.getSelectionProvider().getSelection();
View Full Code Here

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

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

    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

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

    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
Copyright © 2018 www.massapi.com. 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.