mirror of
https://github.com/ethauvin/bld-antlr4.git
synced 2025-04-28 01:48:12 -07:00
Updated for upcoming RIFE2 1.5.18
This commit is contained in:
parent
7e63bbd663
commit
8e8d5283f8
4 changed files with 57 additions and 32 deletions
|
@ -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.
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue