All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jodd.introspector.SupportedIntrospector Maven / Gradle / Ivy

There is a newer version: 3.4.1
Show newest version
// Copyright (c) 2003-2010, Jodd Team (jodd.org). All Rights Reserved.

package jodd.introspector;

/**
 * {@link jodd.introspector.Introspector Introspector} caches all class descriptors.
 * All supported methods and fields are examined.
 * 
 * @see AccessibleIntrospector
 */
public class SupportedIntrospector extends AccessibleIntrospector {

	/**
	 * Describes a class by creating a new instance of {@link ClassDescriptor}
	 * that will examine all supported methods and fields.
	 */
	@Override
	protected ClassDescriptor describeClass(Class type) {
		return new ClassDescriptor(type, false);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy