1 package org.catacomb.interlish.structure; 2 3 4 5 public interface PageSupplier extends Producer { 6 7 8 Page getPage(String path); 9 10 boolean canGet(String s); 11 12 13 }