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:
parent
f829badf9a
commit
e150068faf
12 changed files with 420 additions and 0 deletions
17
source-code/ConcreteClass.java
Normal file
17
source-code/ConcreteClass.java
Normal 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);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue