Example #1
0
  /** Sets the expand remove file set. */
  public void addExpandPreserveFileset(FileSetType fileSet) {
    if (_expandCleanupFileSet == null) _expandCleanupFileSet = new FileSetType();

    _expandCleanupFileSet.addInverse(fileSet);
  }
Example #2
0
 /** Sets the expand remove file set. */
 public void addExpandCleanupFileset(FileSetType fileSet) {
   if (_expandCleanupFileSet == null) _expandCleanupFileSet = fileSet;
   else _expandCleanupFileSet.add(fileSet);
 }