1 package org.catacomb.interlish.structure;
2
3
4
5 public interface Supplier {
6
7
8 boolean canSupply(String modality, String item);
9
10 Object get(String modality, String item);
11
12 void addDependent(Dependent dep);
13
14
15
16 }