本文整理汇总了Java中com.intellij.openapi.compiler.CompilerPaths.getModuleOutputDirectory方法的典型用法代码示例。如果您正苦于以下问题:Java CompilerPaths.getModuleOutputDirectory方法的具体用法?Java CompilerPaths.getModuleOutputDirectory怎么用?Java CompilerPaths.getModuleOutputDirectory使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.intellij.openapi.compiler.CompilerPaths
的用法示例。
在下文中一共展示了CompilerPaths.getModuleOutputDirectory方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: defineModule
import com.intellij.openapi.compiler.CompilerPaths; //导入方法依赖的package包/类
private ManModule defineModule( Module ijModule )
{
List<VirtualFile> sourceFolders = getSourceRoots( ijModule );
VirtualFile outputPath = CompilerPaths.getModuleOutputDirectory( ijModule, false );
return createModule( ijModule, getClassPaths( ijModule ),
sourceFolders.stream().map( this::toDirectory ).collect( Collectors.toList() ),
outputPath == null ? null : getFileSystem().getIDirectory( outputPath ) );
}
示例2: getBuildDirectoryPath
import com.intellij.openapi.compiler.CompilerPaths; //导入方法依赖的package包/类
@Override
public String getBuildDirectoryPath() {
if(mavenProject != null) {
return mavenProject.getBuildDirectory();
} else {
// The build file is normally placed inside the parent folder of the module output directory
VirtualFile moduleOutputDirectory = CompilerPaths.getModuleOutputDirectory(module, false);
return moduleOutputDirectory.getParent().getPath();
}
}
示例3: iterateModuleClassFiles
import com.intellij.openapi.compiler.CompilerPaths; //导入方法依赖的package包/类
public static void iterateModuleClassFiles(@NotNull final Module module, @NotNull final Consumer<File> fileConsumer) {
final VirtualFile moduleOutputDirectory = CompilerPaths.getModuleOutputDirectory(module, false);
if (moduleOutputDirectory == null) {
return;
}
final String canonicalPath = moduleOutputDirectory.getCanonicalPath();
if (canonicalPath == null) {
return;
}
final File root = new File(canonicalPath);
iterateClassFilesOverRoot(root, fileConsumer);
}
示例4: getModuleOutputDirectory
import com.intellij.openapi.compiler.CompilerPaths; //导入方法依赖的package包/类
public VirtualFile getModuleOutputDirectory(Module module) {
return CompilerPaths.getModuleOutputDirectory(module, false);
}
示例5: getModuleOutputDirectoryForTests
import com.intellij.openapi.compiler.CompilerPaths; //导入方法依赖的package包/类
public VirtualFile getModuleOutputDirectoryForTests(Module module) {
return CompilerPaths.getModuleOutputDirectory(module, true);
}