Package org.cfeclipse.cfml.properties

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


    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

TOP

Related Classes of org.cfeclipse.cfml.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.