summaryrefslogtreecommitdiff
path: root/spring-framework/04-basic-no-xml-java-configuration/src/main/java/com/example/spring/MathsUser.java
blob: aba1836824e24d580425edb943da302b34e1c00b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.example.spring;

public class MathsUser {

	private Maths maths;
	
	public void setMaths(Maths maths) {
		this.maths = maths;
	}
	
	public void doTask() {
		int result = maths.add(10);
		
		System.out.println(result);
	}
}