public void setPipelineModifiers(List<Pipeline.Modifier> modifiers) {
this.pipelineModifiers = new ArrayList<Pipeline.Modifier>(modifiers);
}
public void setWhileyDir(File whileydir) throws IOException {
this.whileyDir = new DirectoryRoot(whileydir, whileyFileFilter, registry);
if(wyilDir instanceof VirtualRoot) {
// The point here is to ensure that when this build task is used in
// a standalone fashion, that wyil files are actually written to
// disk.
this.wyilDir = new DirectoryRoot(whileydir, wyilFileFilter, registry);
}
}