1 16 package org.apache.cocoon.components.source; 17 18 import org.apache.excalibur.source.Source; 19 import org.apache.excalibur.source.SourceException; 20 21 28 public interface TraversableSource extends Source { 29 30 33 public boolean isSourceCollection() throws SourceException; 34 35 38 public int getChildSourceCount() throws SourceException; 39 40 45 public String getChildSource(int index) throws SourceException; 46 47 51 public String getParentSource(); 52 } 53 54 | Popular Tags |