Move indexer implementation to index.processor subpackage (for Jigsaw)

Issue: SPR-16979
This commit is contained in:
Juergen Hoeller 2018-07-03 17:55:24 +02:00
parent 2fe3c36cc2
commit f7d22a0b42
15 changed files with 28 additions and 28 deletions

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.context.index;
package org.springframework.context.index.processor;
import java.io.IOException;
import java.util.ArrayList;

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2017 the original author or authors.
* Copyright 2002-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.context.index;
package org.springframework.context.index.processor;
import java.util.ArrayList;
import java.util.Collections;

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2017 the original author or authors.
* Copyright 2002-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.context.index;
package org.springframework.context.index.processor;
import java.util.HashSet;
import java.util.LinkedHashSet;

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2017 the original author or authors.
* Copyright 2002-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.context.index;
package org.springframework.context.index.processor;
import java.util.HashSet;
import java.util.Set;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.context.index;
package org.springframework.context.index.processor;
import java.util.ArrayList;
import java.util.HashSet;

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2017 the original author or authors.
* Copyright 2002-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.context.index;
package org.springframework.context.index.processor;
import java.io.IOException;
import java.io.InputStream;

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2017 the original author or authors.
* Copyright 2002-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.context.index;
package org.springframework.context.index.processor;
import java.util.HashSet;
import java.util.Set;

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2017 the original author or authors.
* Copyright 2002-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.context.index;
package org.springframework.context.index.processor;
import java.io.IOException;
import java.io.InputStream;

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2017 the original author or authors.
* Copyright 2002-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.context.index;
package org.springframework.context.index.processor;
import java.util.LinkedHashSet;
import java.util.Set;

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2017 the original author or authors.
* Copyright 2002-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.context.index;
package org.springframework.context.index.processor;
import java.util.Set;
import javax.lang.model.element.Element;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.context.index;
package org.springframework.context.index.processor;
import java.util.ArrayList;
import java.util.List;

View File

@ -1 +1 @@
org.springframework.context.index.CandidateComponentsIndexer
org.springframework.context.index.processor.CandidateComponentsIndexer

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2017 the original author or authors.
* Copyright 2002-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.context.index;
package org.springframework.context.index.processor;
import java.io.File;
import java.io.FileInputStream;
@ -61,7 +61,7 @@ import org.springframework.util.ClassUtils;
import static org.hamcrest.Matchers.*;
import static org.junit.Assert.*;
import static org.springframework.context.index.Metadata.*;
import static org.springframework.context.index.processor.Metadata.*;
/**
* Tests for {@link CandidateComponentsIndexer}.

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2017 the original author or authors.
* Copyright 2002-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.context.index;
package org.springframework.context.index.processor;
import java.util.Arrays;
import java.util.List;

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2017 the original author or authors.
* Copyright 2002-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.context.index;
package org.springframework.context.index.processor;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
@ -26,7 +26,7 @@ import org.junit.Test;
import static org.hamcrest.Matchers.*;
import static org.junit.Assert.*;
import static org.springframework.context.index.Metadata.*;
import static org.springframework.context.index.processor.Metadata.*;
/**
* Tests for {@link PropertiesMarshaller}.