[COLLECTIONS-404] Move comparators.sequence package to top-level.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1477287 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2013-04-29 19:26:06 +00:00
parent 6594da9e36
commit 72f33c83d4
11 changed files with 13 additions and 13 deletions

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.collections4.comparators.sequence;
package org.apache.commons.collections4.sequence;
/**
* This interface should be implemented by user object to walk

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.collections4.comparators.sequence;
package org.apache.commons.collections4.sequence;
/**
* Command representing the deletion of one object of the first sequence.

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.collections4.comparators.sequence;
package org.apache.commons.collections4.sequence;
/**
* Abstract base class for all commands used to transform an objects sequence

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.collections4.comparators.sequence;
package org.apache.commons.collections4.sequence;
import java.util.ArrayList;
import java.util.List;

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.collections4.comparators.sequence;
package org.apache.commons.collections4.sequence;
/**
* Command representing the insertion of one object of the second sequence.

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.collections4.comparators.sequence;
package org.apache.commons.collections4.sequence;
/**
* Command representing the keeping of one object present in both sequences.

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.collections4.comparators.sequence;
package org.apache.commons.collections4.sequence;
import java.util.ArrayList;
import java.util.List;

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.collections4.comparators.sequence;
package org.apache.commons.collections4.sequence;
import java.util.List;

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.collections4.comparators.sequence;
package org.apache.commons.collections4.sequence;
import java.util.List;

View File

@ -73,4 +73,4 @@
*
* @version $Id$
*/
package org.apache.commons.collections4.comparators.sequence;
package org.apache.commons.collections4.sequence;

View File

@ -14,15 +14,15 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.collections4.comparators.sequence;
package org.apache.commons.collections4.sequence;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Random;
import org.apache.commons.collections4.comparators.sequence.CommandVisitor;
import org.apache.commons.collections4.comparators.sequence.SequencesComparator;
import org.apache.commons.collections4.sequence.CommandVisitor;
import org.apache.commons.collections4.sequence.SequencesComparator;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;