added merge tu grid Panel

moved borders to external components
added text field for one line with select
This commit is contained in:
Macocian Adrian Radu
2020-04-27 17:32:34 +03:00
parent 2e4d83085a
commit 202610764b
29 changed files with 546 additions and 187 deletions

View File

@@ -0,0 +1,10 @@
package parser.converters;
public class IntegerConverter implements ConverterInterface<Integer> {
@Override
public Integer convert(String content) {
content = content.replaceAll(" ", "");
return Integer.parseInt(content);
}
}