CrystalKeep/src/main/java/nl/andrewlalis/crystalkeep/model/CrystalItem.java

11 lines
232 B
Java

package nl.andrewlalis.crystalkeep.model;
/**
* Unifying interface for both clusters and shards and any other possible
* components in the hierarchy.
*/
public interface CrystalItem {
String getName();
String getIconPath();
}