summaryrefslogtreecommitdiff
path: root/src/main/java/com/nemez/cmdmgr/component/ICommandComponent.java
blob: b236fc371c55858134941c5fe8d4d2297b7f0e35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package com.nemez.cmdmgr.component;

public interface ICommandComponent {

	public Object get(String input);

	public boolean valid(String input);

	public String argName();

	public String getComponentInfo();
}