/** * <copyright> * </copyright> * * */ /** * This class can be used to configure options that must be used when resources * are loaded. This is similar to using the extension point * 'robot.resource.robot.default_load_options' with the difference that the * options defined in this class are used even if no Eclipse platform is running. */ package robot.resource.robot.mopp; public class RobotOptionProvider implements robot.resource.robot.IRobotOptionProvider { public java.util.Map<?,?> getOptions() { // create a map with static option providers here return java.util.Collections.emptyMap(); } }