mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-25 22:38:04 +02:00
17 lines
357 B
Java
17 lines
357 B
Java
import java.util.LinkedList;
|
|
|
|
public class ConcreteClass extends AbstractClass {
|
|
@Override
|
|
int simpleOperation1() {
|
|
return 5;
|
|
}
|
|
|
|
@Override
|
|
int simpleOperation2() {
|
|
return 7;
|
|
}
|
|
|
|
public void testMe(int aVariable, double bT, LinkedList<Integer> c) {
|
|
System.out.println("Test!" + aVariable + bT + c);
|
|
}
|
|
}
|