Home / Class/ Trees Class — spring-boot Architecture

Trees Class — spring-boot Architecture

Architecture documentation for the Trees class in Trees.java from the spring-boot codebase.

Entity Profile

Source Code

configuration-metadata/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/fieldvalues/javac/Trees.java lines 30–59

final class Trees extends ReflectionWrapper {

	private Trees(Object instance) {
		super("com.sun.source.util.Trees", instance);
	}

	Tree getTree(Element element) throws Exception {
		Object tree = findMethod("getTree", Element.class).invoke(getInstance(), element);
		return (tree != null) ? new Tree(tree) : null;
	}

	static Trees instance(ProcessingEnvironment env) throws Exception {
		try {
			ClassLoader classLoader = env.getClass().getClassLoader();
			Class<?> type = findClass(classLoader, "com.sun.source.util.Trees");
			Method method = findMethod(type, "instance", ProcessingEnvironment.class);
			return new Trees(method.invoke(null, env));
		}
		catch (Exception ex) {
			return instance(unwrap(env));
		}
	}

	private static ProcessingEnvironment unwrap(ProcessingEnvironment wrapper) throws Exception {
		Field delegateField = wrapper.getClass().getDeclaredField("delegate");
		delegateField.setAccessible(true);
		return (ProcessingEnvironment) delegateField.get(wrapper);
	}

}

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free