|
|
|
@@ -1,5 +1,5 @@ |
|
|
|
/* |
|
|
|
* Copyright 2003-2005 The Apache Software Foundation |
|
|
|
* Copyright 2003-2006 The Apache Software Foundation |
|
|
|
* |
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
|
* you may not use this file except in compliance with the License. |
|
|
|
@@ -20,24 +20,25 @@ package org.apache.tools.ant.types.selectors; |
|
|
|
|
|
|
|
// Java |
|
|
|
import java.io.File; |
|
|
|
import java.text.RuleBasedCollator; |
|
|
|
import java.util.Comparator; |
|
|
|
import java.util.Iterator; |
|
|
|
import java.text.RuleBasedCollator; |
|
|
|
|
|
|
|
// Ant |
|
|
|
import org.apache.tools.ant.BuildEvent; |
|
|
|
import org.apache.tools.ant.BuildException; |
|
|
|
import org.apache.tools.ant.types.Parameter; |
|
|
|
import org.apache.tools.ant.types.Path; |
|
|
|
|
|
|
|
// inside MockProject |
|
|
|
import org.apache.tools.ant.BuildFileTest; |
|
|
|
import org.apache.tools.ant.Project; |
|
|
|
import org.apache.tools.ant.Target; |
|
|
|
import org.apache.tools.ant.Task; |
|
|
|
import org.apache.tools.ant.BuildEvent; |
|
|
|
|
|
|
|
// The classes to test |
|
|
|
import org.apache.tools.ant.types.selectors.modifiedselector.*; |
|
|
|
import org.apache.tools.ant.types.Parameter; |
|
|
|
import org.apache.tools.ant.types.Path; |
|
|
|
import org.apache.tools.ant.types.selectors.modifiedselector.Algorithm; |
|
|
|
import org.apache.tools.ant.types.selectors.modifiedselector.Cache; |
|
|
|
import org.apache.tools.ant.types.selectors.modifiedselector.ChecksumAlgorithm; |
|
|
|
import org.apache.tools.ant.types.selectors.modifiedselector.DigestAlgorithm; |
|
|
|
import org.apache.tools.ant.types.selectors.modifiedselector.EqualComparator; |
|
|
|
import org.apache.tools.ant.types.selectors.modifiedselector.HashvalueAlgorithm; |
|
|
|
import org.apache.tools.ant.types.selectors.modifiedselector.ModifiedSelector; |
|
|
|
import org.apache.tools.ant.types.selectors.modifiedselector.PropertiesfileCache; |
|
|
|
import org.apache.tools.ant.util.FileUtils; |
|
|
|
|
|
|
|
|
|
|
|
|