Home / Class/ ExampleWithStaticAccessors Class — spring-boot Architecture

ExampleWithStaticAccessors Class — spring-boot Architecture

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

Entity Profile

Relationship Graph

Source Code

core/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/JavaBeanBinderTests.java lines 1031–1053

	static class ExampleWithStaticAccessors {

		private static @Nullable String name;

		private int counter;

		static @Nullable String getName() {
			return name;
		}

		static void setName(@Nullable String name) {
			ExampleWithStaticAccessors.name = name;
		}

		int getCounter() {
			return this.counter;
		}

		void setCounter(int counter) {
			this.counter = counter;
		}

	}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free