1 package org.catacomb.interlish.structure; 2 3 4 public interface Toggle { 5 6 7 8 boolean isSelected(); 9 10 void setState(boolean b); 11 12 }