本文整理匯總了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;
}