Package org.robovm.compiler.config
Interface Resource.Walker
- Enclosing class:
- Resource
public static interface Resource.Walker
Interface used by
Resource.walk(Walker, File) to walk the paths
matched by a Resource.-
Method Summary
Modifier and Type Method Description booleanprocessDir(Resource resource, File dir, File destDir)Processes the specified folder.voidprocessFile(Resource resource, File file, File destDir)Processes the specified file.
-
Method Details
-
processDir
Processes the specified folder. This typically does nothing but returntrueto signal that the files in the folder should be processed usingprocessFile(Resource, File, File).- Throws:
IOException
-
processFile
Processes the specified file. This typically copies the file to the destination directory possibly renaming/transforming the file in some way in the process.- Throws:
IOException
-