Better handling of an empty input

This commit is contained in:
mmk2410 2015-04-01 01:21:30 +02:00
parent 93bf3f101c
commit 2d8bf539ae
4 changed files with 740 additions and 728 deletions

View File

@ -24,6 +24,9 @@ package de.marcelkapfer.morseconverter.engine;
public class DecodeNormalMorseManager {
public static String getDecodedString(String inputMessage) {
if(inputMessage.equals("")){
return "Please enter at least one character";
} else {
StringBuffer message = new StringBuffer(inputMessage);
if (message.toString().endsWith(" ")) {
message = message.deleteCharAt(message.length() - 1);
@ -32,9 +35,7 @@ public class DecodeNormalMorseManager {
StringBuffer input = new StringBuffer();
input = input.replace(0, input.length(), message.toString().toUpperCase());
StringBuffer output = new StringBuffer();
if (input.toString().equals("")) {
output.replace(0, output.length(), "Please enter at least one character");
} else if (input.toString().equals("LETTERSPACE")) {
if (input.toString().equals("LETTERSPACE")) {
output.replace(0, output.length(), " ");
} else if (input.toString().equals("END OF WORK")) {
output.replace(0, output.length(), "...-.-");
@ -241,3 +242,4 @@ public class DecodeNormalMorseManager {
return output.toString();
}
}
}

View File

@ -24,6 +24,9 @@ package de.marcelkapfer.morseconverter.engine;
public class DecodeWrittenMorseManager {
public static String getDecodedString(String inputMessage) {
if(inputMessage.equals("")){
return "Please enter at least one character";
} else {
StringBuffer message = new StringBuffer(inputMessage);
if (message.toString().endsWith(" ")) {
message = message.deleteCharAt(message.length() - 1);
@ -32,9 +35,7 @@ public class DecodeWrittenMorseManager {
StringBuffer input = new StringBuffer();
input = input.replace(0, input.length(), message.toString().toUpperCase());
StringBuffer output = new StringBuffer();
if (input.toString().equals("")) {
output.replace(0, output.length(), "Please enter at least one character");
} else if (input.toString().equals("LETTERSPACE")) {
if (input.toString().equals("LETTERSPACE")) {
output.replace(0, output.length(), "#");
} else if (input.toString().equals("END OF WORK")) {
output.replace(0, output.length(), "000101");
@ -242,3 +243,4 @@ public class DecodeWrittenMorseManager {
return output.toString();
}
}
}

View File

@ -27,6 +27,9 @@ package de.marcelkapfer.morseconverter.engine;
public class EncodeNormalMorseManager {
public static String getEncodedString(String inputMessage) {
if(inputMessage.equals("")){
return "Please enter at least one character";
} else {
// Converts the input string into a StringBuffer
StringBuffer message = new StringBuffer(inputMessage);
// Delete the space at the end which is automatically set through some keyboards
@ -190,3 +193,4 @@ public class EncodeNormalMorseManager {
return output.toString();
}
}
}

View File

@ -28,6 +28,9 @@ package de.marcelkapfer.morseconverter.engine;
public class EncodeWrittenMorseManager {
public static String getEncodedString(String inputMessage) {
if(inputMessage.equals("")){
return "Please enter at least one character";
} else {
StringBuffer message = new StringBuffer(inputMessage);
if (message.toString().endsWith(" ")) {
message = message.deleteCharAt(message.length() - 1);
@ -189,5 +192,6 @@ public class EncodeWrittenMorseManager {
}
return output.toString();
}
}
}