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