Package com.googlecode.goclipse.ui.editor.text

Source Code of com.googlecode.goclipse.ui.editor.text.GoHyperlinkDetector2

/*******************************************************************************
* Copyright (c) 2014, 2014 Bruno Medeiros and other Contributors.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*     Bruno Medeiros - initial API and implementation
*******************************************************************************/
package com.googlecode.goclipse.ui.editor.text;

import melnorme.lang.ide.ui.editor.EditorUtils.OpenNewEditorMode;
import melnorme.lang.ide.ui.editor.LangHyperlinkDetector;
import melnorme.lang.tooling.ast.SourceRange;

import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.jface.text.IRegion;
import org.eclipse.ui.texteditor.ITextEditor;

import com.googlecode.goclipse.ui.actions.GoOracleOpenDefinitionOperation;

public class GoHyperlinkDetector2 extends LangHyperlinkDetector {
 
  @Override
  protected AbstractLangElementHyperlink createHyperlink(IRegion requestedRegion, ITextEditor textEditor,
      IRegion wordRegion) {
    return new GoElementHyperlink(wordRegion, textEditor);
  }
 
  public class GoElementHyperlink extends AbstractLangElementHyperlink {
   
    public GoElementHyperlink(IRegion region, ITextEditor textEditor) {
      super(region, textEditor);
    }
   
    @Override
    public String getHyperlinkText() {
      return GoOracleOpenDefinitionOperation.OPEN_DEFINITION_OpName;
    }
   
    @Override
    public void open() {
      textEditor.doSave(new NullProgressMonitor());
     
      SourceRange sr = new SourceRange(region.getOffset(), region.getLength());
      new GoOracleOpenDefinitionOperation(textEditor, sr, OpenNewEditorMode.TRY_REUSING_EXISTING_EDITORS)
        .executeAndHandle();
    }
   
  }
 
}
TOP

Related Classes of com.googlecode.goclipse.ui.editor.text.GoHyperlinkDetector2

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.