Polish Javadoc

master
Chris Beams 13 years ago
parent 8f18337543
commit 153d38f1c8
  1. 8
      org.springframework.core/src/main/java/org/springframework/core/env/PropertySource.java
  2. 7
      org.springframework.core/src/main/java/org/springframework/core/env/package-info.java

@ -182,17 +182,15 @@ public abstract class PropertySource<T> {
* <p>Primarily for internal use, but given a collection of {@code PropertySource} objects, may be * <p>Primarily for internal use, but given a collection of {@code PropertySource} objects, may be
* used as follows: * used as follows:
* <pre class="code"> * <pre class="code">
* {@code * {@code List<PropertySource<?>> sources = new ArrayList<PropertySource<?>>();
* List<PropertySource<?>> sources = new ArrayList<PropertySource<?>>();
* sources.add(new MapPropertySource("sourceA", mapA)); * sources.add(new MapPropertySource("sourceA", mapA));
* sources.add(new MapPropertySource("sourceB", mapB)); * sources.add(new MapPropertySource("sourceB", mapB));
* assert sources.contains(PropertySource.named("sourceA")); * assert sources.contains(PropertySource.named("sourceA"));
* assert sources.contains(PropertySource.named("sourceB")); * assert sources.contains(PropertySource.named("sourceB"));
* assert !sources.contains(PropertySource.named("sourceC")); * assert !sources.contains(PropertySource.named("sourceC"));
* } * }</pre>
* </pre>
* *
* <p>The returned {@code PropertySource} will throw {@code UnsupportedOperationException} * The returned {@code PropertySource} will throw {@code UnsupportedOperationException}
* if any methods other than {@code equals(Object)}, {@code hashCode()}, and {@code toString()} * if any methods other than {@code equals(Object)}, {@code hashCode()}, and {@code toString()}
* are called. * are called.
* *

@ -0,0 +1,7 @@
/**
* Spring's environment abstraction consisting of bean definition
* profile and hierarchical property source support.
* @author Chris Beams
* @since 3.1
*/
package org.springframework.core.env;
Loading…
Cancel
Save