2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00

added 5 LaTeX examples

This commit is contained in:
Martin Thoma 2012-08-10 10:56:38 +02:00
parent f829badf9a
commit e150068faf
12 changed files with 420 additions and 0 deletions

View file

@ -0,0 +1,17 @@
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);
}
}