本文整理汇总了Java中com.intellij.openapi.vfs.VfsUtilCore.convertToURL方法的典型用法代码示例。如果您正苦于以下问题:Java VfsUtilCore.convertToURL方法的具体用法?Java VfsUtilCore.convertToURL怎么用?Java VfsUtilCore.convertToURL使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.intellij.openapi.vfs.VfsUtilCore
的用法示例。
在下文中一共展示了VfsUtilCore.convertToURL方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getBaseUrl
import com.intellij.openapi.vfs.VfsUtilCore; //导入方法依赖的package包/类
private URL getBaseUrl() {
if (myElement == null) return null;
PsiElement element = myElement.getNavigationElement();
if (element == null) return null;
PsiFile file = element.getContainingFile();
if (file == null) return null;
VirtualFile vFile = file.getVirtualFile();
if (vFile == null) return null;
return VfsUtilCore.convertToURL(vFile.getUrl());
}
示例2: setRecentImportFile
import com.intellij.openapi.vfs.VfsUtilCore; //导入方法依赖的package包/类
public static void setRecentImportFile(@NotNull VirtualFile recentFile) {
CodeStyleSchemesUIConfiguration configuration = getInstance();
if (configuration != null) {
URL url = VfsUtilCore.convertToURL(recentFile.getUrl());
if (url != null) {
configuration.RECENT_IMPORT_FILE_LOCATION = url.toString();
}
}
}
示例3: getURL
import com.intellij.openapi.vfs.VfsUtilCore; //导入方法依赖的package包/类
@Nullable
public static URL getURL(String url) throws MalformedURLException {
return isAbsoluteURL(url) ? VfsUtilCore.convertToURL(url) : new URL("file", "", url);
}