documentPath = '/' + input.getPluginId() + input.getUrl().getPath();
}
processor.process(UAElementFactory.newElement(document.getDocumentElement()), documentPath);
if ( cheatSheetKind == COMPOSITE_ONLY || (cheatSheetKind == ANY && isComposite(document))) {
CompositeCheatSheetParser compositeParser = new CompositeCheatSheetParser();
CompositeCheatSheetModel result = compositeParser.parseCompositeCheatSheet(document, input.getUrl());
status = compositeParser.getStatus();
return result;
}
try {
return parseCheatSheet(document);
} catch(CheatSheetParserException e) {