1 16 package org.apache.cocoon.components.source; 17 18 import org.apache.cocoon.components.source.helpers.SourceProperty; 19 20 import org.apache.excalibur.source.Source; 21 import org.apache.excalibur.source.SourceException; 22 23 29 public interface InspectableSource extends Source { 30 31 34 public SourceProperty getSourceProperty(String namespace, String name) throws SourceException; 35 36 39 public void setSourceProperty(SourceProperty property) throws SourceException; 40 41 44 public SourceProperty[] getSourceProperties() throws SourceException; 45 46 49 public void removeSourceProperty(String namespace, String name) throws SourceException; 50 } 51 52 | Popular Tags |