mirror of
https://github.com/pcvolkmer/onkostar-plugin-dnpm.git
synced 2025-07-05 02:22:54 +00:00
15 lines
246 B
Java
15 lines
246 B
Java
package ATCCodes;
|
|
|
|
/**
|
|
* Common Agent Code definition
|
|
*
|
|
* @author Paul-Christian Volkmer
|
|
* @since 0.1.0
|
|
*/
|
|
public interface AgentCode extends Comparable<AgentCode> {
|
|
String getCode();
|
|
|
|
String getName();
|
|
|
|
CodeSystem getSystem();
|
|
} |