-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathSSHCreateBTree.java
More file actions
47 lines (38 loc) · 1.03 KB
/
SSHCreateBTree.java
File metadata and controls
47 lines (38 loc) · 1.03 KB
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
37
38
39
40
41
42
43
44
45
46
47
package cs321.create;
import cs321.btree.BTree;
import cs321.btree.BTreeException;
import cs321.btree.TreeObject;
import cs321.common.ParseArgumentException;
/**
* The driver class for building a BTree representation of an SSH Log file.
*
* @author
*/
public class SSHCreateBTree {
/**
* Main driver of program.
* @param args
*/
public static void main(String[] args) throws Exception
{
System.out.println("Hello world from cs321.create.SSHCreateBTree.main");
SSHCreateBTreeArguments myArgs = parseArguments(args);
// other code
}
/**
* Process command line arguments.
* @param args The command line arguments passed to the main method.
*/
public static SSHCreateBTreeArguments parseArguments(String[] args) throws ParseArgumentException
{
return null;
}
/**
* Print usage message and exit.
* @param errorMessage the error message for proper usage
*/
private static void printUsageAndExit(String errorMessage)
{
System.exit(1);
}
}