1 16 19 package org.apache.xalan.processor; 20 21 import org.apache.xalan.res.XSLTErrorResources; 22 23 28 class ProcessorImport extends ProcessorInclude 29 { 30 31 36 protected int getStylesheetType() 37 { 38 return StylesheetHandler.STYPE_IMPORT; 39 } 40 41 46 protected String getStylesheetInclErr() 47 { 48 return XSLTErrorResources.ER_IMPORTING_ITSELF; 49 } 50 51 } 52 | Popular Tags |