Generated by
JDiff

Class org.springframework.test.context.ContextConfigurationAttributes

Documentation changed from old to new.

Added Constructors
ContextConfigurationAttributes(Class<?>, String[], Class[], boolean, Class[], boolean, Class<ContextLoader>) Construct a new ContextConfigurationAttributes instance for the Class test class that declared the @ContextConfiguration annotation and its corresponding attributes.
 

Changed Constructors
ContextConfigurationAttributes(Class<?>, String[], Class[], boolean, Class<ContextLoader>) Documentation changed from old to new.
Now deprecated.
as of Spring 3.2, use {@link #ContextConfigurationAttributes(Class, String[], Class[], boolean, Class[], boolean, Class)} instead
ContextConfigurationAttributes(Class<?>, ContextConfiguration) Documentation changed from old to new.
Construct a new ContextConfigurationAttributes instance for the supplied @ContextConfiguration annotation and the Class test class that declared it.
 

Added Methods
Class[] getInitializers() Get the {@code ApplicationContextInitializer} classes that were declared via @ContextConfiguration.
boolean isInheritInitializers() Get the {@code inheritInitializers} flag that was declared via @ContextConfiguration.
 

Changed Methods
Class[] getClasses() Documentation changed from old to new.
Get the annotated classes that were declared via @ContextConfiguration.
Class<ContextLoader> getContextLoaderClass() Documentation changed from old to new.
Get the {@code ContextLoader} class that was declared via @ContextConfiguration.
Class<?> getDeclaringClass() Documentation changed from old to new.
Get the Class class that declared the @ContextConfiguration annotation.
String[] getLocations() Documentation changed from old to new.
Get the resource locations that were declared via @ContextConfiguration.
boolean hasClasses() Documentation changed from old to new.
Determine if this {@code ContextConfigurationAttributes} instance has class-based resources.
boolean hasLocations() Documentation changed from old to new.
Determine if this {@code ContextConfigurationAttributes} instance has path-based resource locations.
boolean hasResources() Documentation changed from old to new.
Determine if this {@code ContextConfigurationAttributes} instance has either path-based resource locations or class-based resources.
boolean isInheritLocations() Documentation changed from old to new.
Get the {@code inheritLocations} flag that was declared via @ContextConfiguration.
void setClasses(Class[]) Documentation changed from old to new.
Set the processed annotated classes, effectively overriding the original value declared via @ContextConfiguration.
void setLocations(String[]) Documentation changed from old to new.
Set the processed resource locations, effectively overriding the original value declared via @ContextConfiguration.