1 2 package org.catacomb.interlish.structure; 3 4 public interface AddableTo { 5 6 void add(Object obj); 7 8 } 9 10