Clean code and new release

This commit is contained in:
manzerbredes 2016-03-31 11:12:01 +02:00
parent 58a70ad52d
commit fbfa7d72b6
6 changed files with 90 additions and 65 deletions

View file

@ -16,7 +16,7 @@ import joptsimple.OptionSet;
* @author Manzerbredes
*
*/
public class ArgsTypeA implements Args{
public class ArgsTypeA implements ArgsParser{
/**
* Define Keyboard primary color state
*/
@ -129,5 +129,11 @@ public class ArgsTypeA implements Args{
}
driver.setMode(this.mode);
}
@Override
public Class<?> getType() {
return DriverTypeA.class;
}
}