mirror of
https://github.com/macocianradu/javaGUItoolkit.git
synced 2026-03-19 06:00:04 +00:00
initial parser working as intended
This commit is contained in:
9
src/converters/DoubleConverter.java
Normal file
9
src/converters/DoubleConverter.java
Normal file
@@ -0,0 +1,9 @@
|
||||
package converters;
|
||||
|
||||
public class DoubleConverter implements ConverterInterface<Double>{
|
||||
|
||||
@Override
|
||||
public Double convert(String content) {
|
||||
return Double.parseDouble(content);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user