0

Converted to a gradle project

This commit is contained in:
psrcek
2016-11-19 18:35:46 +01:00
parent cbe402fc73
commit 436da98907
34 changed files with 282 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
package com.nemez.cmdmgr.component;
public class EmptyComponent extends ArgumentComponent {
@Override
public Object get(String input) {
return "";
}
@Override
public boolean valid(String input) {
return true;
}
@Override
public String getComponentInfo() {
return "<empty>";
}
}