1 package org.catacomb.interlish.structure; 2 3 4 public interface Dependent { 5 6 7 String getModality(); 8 9 String getInterestedIn(); 10 11 void newValue(Object value); 12 13 14 }