summaryrefslogtreecommitdiff
path: root/spring-framework/01-basic-xml-config/src/main/java/com/example/spring/MathsUser.java
blob: 0e4cecf8c3f9433beb66c611c1067558187fae3f (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);
	}
}