1 2 package org.catacomb.interlish.structure; 3 4 public interface AttributeAddableTo { 5 6 void addAttribute(String sn, String sv); 7 8 } 9 10