1 package org.catacomb.druid.build; 2 3 import org.catacomb.interlish.structure.IDd; 4 5 6 public interface GroupContingent extends IDd { 7 8 9 void enable(); 10 11 void disable(); 12 13 void select(); 14 15 void deselect(); 16 17 }