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,7 @@
package parser.converters;
import com.sun.jdi.InvalidTypeException;
public interface ConverterInterface<T> {
T convert(String content) throws InvalidTypeException;
}