mirror of
https://github.com/macocianradu/javaGUItoolkit.git
synced 2026-03-19 06:00:04 +00:00
added merge tu grid Panel
moved borders to external components added text field for one line with select
This commit is contained in:
10
src/parser/converters/IntegerConverter.java
Normal file
10
src/parser/converters/IntegerConverter.java
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user