1 package org.catacomb.interlish.structure; 2 3 4 public interface PageDisplay extends Consumer { 5 6 7 void setPageSupplier(PageSupplier ps); 8 9 void showPage(Page p); 10 11 }