com.android.tools.idea.gradle.service.notification.OpenFileHyperlink.java Source code

Java tutorial

Introduction

Here is the source code for com.android.tools.idea.gradle.service.notification.OpenFileHyperlink.java

Source

/*
 * Copyright (C) 2013 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.android.tools.idea.gradle.service.notification;

import com.intellij.openapi.fileEditor.OpenFileDescriptor;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.util.io.FileUtil;
import com.intellij.openapi.vfs.VirtualFile;
import com.intellij.pom.Navigatable;
import org.jetbrains.annotations.NotNull;

class OpenFileHyperlink extends NotificationHyperlink {
    @NotNull
    private final String myFilePath;
    private final int myLine;

    /**
     * Creates a file hyperlink. The line number should be 0-based. The file path should be a file system dependent
     * path.
     */
    OpenFileHyperlink(@NotNull final String filePath, final int line) {
        super("openFile", "Open File");
        myFilePath = FileUtil.toSystemIndependentName(filePath);
        myLine = line;
    }

    @Override
    protected void execute(@NotNull Project project) {
        VirtualFile projectFile = project.getProjectFile();
        if (projectFile == null) {
            // This is the default project. This will NEVER happen.
            return;
        }
        VirtualFile file = projectFile.getParent().getFileSystem().findFileByPath(myFilePath);
        if (file != null) {
            Navigatable openFile = new OpenFileDescriptor(project, file, myLine, -1, false);
            if (openFile.canNavigate()) {
                openFile.navigate(true);
            }
        }
    }
}