本文整理汇总了Java中org.apache.tools.ant.types.Path.add方法的典型用法代码示例。如果您正苦于以下问题:Java Path.add方法的具体用法?Java Path.add怎么用?Java Path.add使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.tools.ant.types.Path
的用法示例。
在下文中一共展示了Path.add方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testPathsDirectoryWithNestedFile
import org.apache.tools.ant.types.Path; //导入方法依赖的package包/类
@Test
public final void testPathsDirectoryWithNestedFile() throws IOException {
// given
TestRootModuleChecker.reset();
final CheckstyleAntTaskLogStub antTask = new CheckstyleAntTaskLogStub();
antTask.setConfig(getPath(CUSTOM_ROOT_CONFIG_FILE));
antTask.setProject(new Project());
final FileResource fileResource = new FileResource(
antTask.getProject(), getPath(""));
final Path sourcePath = new Path(antTask.getProject());
sourcePath.add(fileResource);
antTask.addPath(sourcePath);
// when
antTask.execute();
// then
assertTrue("Checker is not processed",
TestRootModuleChecker.isProcessed());
final List<File> filesToCheck = TestRootModuleChecker.getFilesToCheck();
assertThat("There more files to check then expected",
filesToCheck.size(), is(9));
assertThat("The path of file differs from expected",
filesToCheck.get(5).getAbsolutePath(), is(getPath(FLAWLESS_INPUT)));
assertEquals("Amount of logged messages in unexpected",
9, antTask.getLoggedMessages().size());
}
示例2: getClassPath
import org.apache.tools.ant.types.Path; //导入方法依赖的package包/类
public String getClassPath() {
Path totalPath = null;
for (Path p : classPaths) {
if (totalPath == null) {
totalPath = p;
continue;
}
totalPath.add(p);
}
return totalPath != null ? totalPath.toString() : DEFAULT_FILTER;
}