Updated for upcoming RIFE2 1.5.18

This commit is contained in:
Geert Bevin 2023-04-06 15:24:00 -04:00
parent 7e63bbd663
commit 8e8d5283f8
4 changed files with 57 additions and 32 deletions

View file

@ -127,6 +127,17 @@ public class Antlr4Operation extends AbstractOperation<Antlr4Operation> {
return this;
}
/**
* Provides the source directories that will be used for the antlr operation.
*
* @param directories the source directories
* @return this operation instance
* @since 1.0
*/
public Antlr4Operation sourceDirectories(File... directories) {
return sourceDirectories(Arrays.asList(directories));
}
/**
* Provides the source directories that will be used for the antlr operation.
*
@ -139,6 +150,17 @@ public class Antlr4Operation extends AbstractOperation<Antlr4Operation> {
return this;
}
/**
* Provides the source files that will be used for the antlr operation.
*
* @param files the source files
* @return this operation instance
* @since 1.0
*/
public Antlr4Operation sourceFiles(File... files) {
return sourceFiles(Arrays.asList(files));
}
/**
* Provides the source files that will be used for the antlr operation.
*