Generated TextLogik, renamed SystemInput to TextInput
This commit is contained in:
@@ -1,21 +0,0 @@
|
||||
import java.util.Scanner;
|
||||
|
||||
public class SystemInput {
|
||||
|
||||
private Scanner scanner;
|
||||
|
||||
public SystemInput() {
|
||||
scanner = new Scanner("");
|
||||
}
|
||||
|
||||
/**
|
||||
* Method: CheckForInput
|
||||
*/
|
||||
public String[] checkForInput() {
|
||||
|
||||
return new String[] {
|
||||
"Test"
|
||||
};
|
||||
}
|
||||
|
||||
}
|
||||
+1
-24
@@ -1,31 +1,8 @@
|
||||
public class TextEditor {
|
||||
|
||||
private SystemInput sysInput;
|
||||
private Text text;
|
||||
|
||||
public static void main(String[] args) {
|
||||
TextEditor t = new TextEditor();
|
||||
}
|
||||
|
||||
public TextEditor() {
|
||||
sysInput = new SystemInput();
|
||||
text = new Text();
|
||||
String command[];
|
||||
|
||||
do {
|
||||
command = sysInput.checkForInput();
|
||||
|
||||
switch (command[0]) {
|
||||
case "ADD":
|
||||
break;
|
||||
case "REMOVE":
|
||||
break;
|
||||
default:
|
||||
System.out.println("Command not found. Try again");
|
||||
break;
|
||||
}
|
||||
|
||||
} while ("exit".equals(command[0]));
|
||||
TextLogik tl = new TextLogik();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
import java.util.Scanner;
|
||||
|
||||
public class TextInput {
|
||||
|
||||
private static Scanner sc = new Scanner("");
|
||||
|
||||
public static String[] checkForInput() {
|
||||
return sc.nextLine().split("");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
public class TextLogik {
|
||||
private Text text;
|
||||
|
||||
public TextLogik() {
|
||||
text = new Text();
|
||||
String command[];
|
||||
|
||||
do {
|
||||
command = TextInput.checkForInput();
|
||||
|
||||
switch (command[0]) {
|
||||
case "ADD":
|
||||
break;
|
||||
case "REMOVE":
|
||||
break;
|
||||
default:
|
||||
System.out.println("Command not found. Try again");
|
||||
break;
|
||||
}
|
||||
|
||||
} while ("exit".equals(command[0]));
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user