Java Code Examples for org.gradle.api.Action#processFile()
The following examples show how to use
org.gradle.api.Action#processFile() .
These examples are extracted from open source projects.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source Project: pushfish-android File: CopyFileVisitorImpl.java License: BSD 2-Clause "Simplified" License | 5 votes |
private void processFile(FileVisitDetails visitDetails) { DefaultFileCopyDetails details = createDefaultFileCopyDetails(visitDetails); for (Action<? super FileCopyDetails> action : copySpecResolver.getAllCopyActions()) { action.execute(details); if (details.isExcluded()) { return; } } action.processFile(details); }
Example 2
Source Project: pushfish-android File: CopyFileVisitorImpl.java License: BSD 2-Clause "Simplified" License | 5 votes |
private void processFile(FileVisitDetails visitDetails) { DefaultFileCopyDetails details = createDefaultFileCopyDetails(visitDetails); for (Action<? super FileCopyDetails> action : spec.getAllCopyActions()) { action.execute(details); if (details.isExcluded()) { return; } } action.processFile(details); }
Example 3
Source Project: Pushjet-Android File: CopyFileVisitorImpl.java License: BSD 2-Clause "Simplified" License | 5 votes |
private void processFile(FileVisitDetails visitDetails) { DefaultFileCopyDetails details = createDefaultFileCopyDetails(visitDetails); for (Action<? super FileCopyDetails> action : copySpecResolver.getAllCopyActions()) { action.execute(details); if (details.isExcluded()) { return; } } action.processFile(details); }
Example 4
Source Project: Pushjet-Android File: CopyFileVisitorImpl.java License: BSD 2-Clause "Simplified" License | 5 votes |
private void processFile(FileVisitDetails visitDetails) { DefaultFileCopyDetails details = createDefaultFileCopyDetails(visitDetails); for (Action<? super FileCopyDetails> action : spec.getAllCopyActions()) { action.execute(details); if (details.isExcluded()) { return; } } action.processFile(details); }