mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-25 14:28:05 +02:00
13 lines
228 B
Java
13 lines
228 B
Java
public class AbstractClass {
|
|
int templateMethod() {
|
|
return simpleOperation1() * simpleOperation2();
|
|
}
|
|
|
|
int simpleOperation1() {
|
|
return 2;
|
|
}
|
|
|
|
int simpleOperation2() {
|
|
return 3;
|
|
}
|
|
}
|