blob: e7c68d7a912a987f3d0cba2611fbde6d6a874d7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/**
*
*/
package de.fhswf.in.inf.java1.aufgabe5;
/**
* TODO Add comment here
*
* @author $Author: $
* @version $Revision: $, $Date: $ UTC
*/
public final class Bank
{
/**
* TODO Add constructor comment here
*
*/
private Bank()
{
// TODO Auto-generated constructor stub
}
/**
* TODO Add method comment here
*
* @param args
* Shell arguments
*/
public static void main(String[] args)
{
// TODO Auto-generated method stub
}
}
|