summaryrefslogtreecommitdiff
path: root/com/nemez/cmdmgr/component/ICommandComponent.java
blob: ede09785b41fb0adc63145909b45b0e3badc98cc (plain)
1
2
3
4
5
6
7
8
9
package com.nemez.cmdmgr.component;

public interface ICommandComponent {

	public Object get(String input);
	public boolean valid(String input);
	public String argName();
	public String getComponentInfo();
}