1 package org.catacomb.interlish.structure; 2 3 4 public interface PivotedTree extends Tree { 5 6 String[] getPivotNames(); 7 8 void repivot(String s); 9 10 }