return (String) servletContext.getConfigItem("Edit.DefaultEditor");
}
protected FileInfo createFileInfo(String path) throws EditorException {
try {
return new CommonsVfsFileInfo(servletContext.getContainer(), base.resolveFile(path));
} catch (IOException e) {
throw new EditorException("Couldn't get file info(" + path + ")", e);
}
}