1 2 package org.catacomb.interlish.structure; 3 4 5 public interface ChangeNotifiable { 6 7 void changed(Object src); 8 9 } 10 11