001package org.dllearner.cli.DocumentationGeneratorMeta; 002 003import java.util.Map; 004 005import org.dllearner.confparser.ConfParserConfiguration; 006import org.dllearner.confparser.PostProcessor; 007import org.dllearner.core.ComponentAnn; 008import org.dllearner.core.config.ConfigOption; 009 010@ComponentAnn(name = "GLOBAL OPTIONS", version = 0, shortName = "") 011public abstract class GlobalDoc { 012 // Implemented in: 013 Class<PostProcessor> prefixesImpl = PostProcessor.class; 014 015 @ConfigOption(description = "Mapping of prefixes to replace inside other configuration file entries", exampleValue = "[ (\"ex\",\"http://example.com/father#\") ]") 016 Map<String,String> prefixes; 017 018 // Implemented in: 019 Class<ConfParserConfiguration> renderingImpl = ConfParserConfiguration.class; 020 @ConfigOption(description = "The string renderer for any OWL expression output, can be \"dlsyntax\" or \"manchester\"", defaultValue = "manchester", exampleValue = "dlsyntax") 021 String rendering; 022}