1 16 package org.apache.cocoon.components.language.markup; 17 18 import org.apache.avalon.framework.service.ServiceManager; 19 import org.apache.cocoon.ProcessingException; 20 import org.apache.excalibur.source.SourceException; 21 import org.apache.excalibur.source.SourceResolver; 22 import org.xml.sax.SAXException ; 23 24 import java.io.IOException ; 25 26 36 public class NamedLogicsheet extends Logicsheet { 37 38 41 protected String uri; 42 43 46 private String prefix; 47 48 public NamedLogicsheet(String systemId, ServiceManager manager, 49 SourceResolver resolver, LogicsheetFilter filter) 50 throws IOException , ProcessingException, SourceException, SAXException 51 { 52 super(systemId, manager, resolver, filter); 53 } 54 55 60 public void setPrefix(String prefix) { 61 this.prefix = prefix; 62 } 63 64 69 public String getPrefix() { 70 return this.prefix; 71 } 72 73 78 public void setURI(String uri) { 79 this.uri = uri; 80 } 81 82 87 public String getURI() { 88 return this.uri; 89 } 90 } 91 | Popular Tags |