Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
SWTBotPreferenceConstants |
|
| 0.0;0 |
1 | /******************************************************************************* | |
2 | * Copyright (c) 2009 Ketan Padegaonkar and others. | |
3 | * All rights reserved. This program and the accompanying materials | |
4 | * are made available under the terms of the Eclipse Public License v1.0 | |
5 | * which accompanies this distribution, and is available at | |
6 | * http://www.eclipse.org/legal/epl-v10.html | |
7 | * | |
8 | * Contributors: | |
9 | * Ketan Padegaonkar - initial API and implementation | |
10 | *******************************************************************************/ | |
11 | package org.eclipse.swtbot.swt.finder.utils; | |
12 | ||
13 | /** | |
14 | * Constants used by {@link SWTBotPreferences}. | |
15 | * | |
16 | * @author Ketan Padegaonkar <KetanPadegaonkar [at] gmail [dot] com> | |
17 | * @version $Id$ | |
18 | */ | |
19 | public interface SWTBotPreferenceConstants { | |
20 | ||
21 | /** @see SWTBotPreferences#DEFAULT_KEY */ | |
22 | public static final String KEY_DEFAULT_KEY = "org.eclipse.swtbot.search.defaultKey"; | |
23 | /** @see SWTBotPreferences#TIMEOUT */ | |
24 | public static final String KEY_TIMEOUT = "org.eclipse.swtbot.search.timeout"; | |
25 | /** | |
26 | * @see SWTBotPreferences#RECORDER_FILE_NAME | |
27 | * @deprecated - this will be removed in future versions of swtbot. | |
28 | */ | |
29 | public static final String KEY_RECORER_FILE_NAME = "org.eclipse.swtbot.recorder.file.name"; | |
30 | ||
31 | /** @see SWTBotPreferences#PLAYBACK_DELAY */ | |
32 | public static final String KEY_PLAYBACK_DELAY = "org.eclipse.swtbot.playback.delay"; | |
33 | /** @see SWTBotPreferences#DEFAULT_POLL_DELAY */ | |
34 | public static final String KEY_DEFAULT_POLL_DELAY = "org.eclipse.swtbot.playback.poll.delay"; | |
35 | ||
36 | /** @see SWTBotPreferences#MAX_ERROR_SCREENSHOT_COUNT */ | |
37 | public static final String KEY_MAX_ERROR_SCREENSHOT_COUNT = "org.eclipse.swtbot.screenshots.error.maxcount"; | |
38 | /** @see SWTBotPreferences#SCREENSHOTS_DIR */ | |
39 | public static final String KEY_SCREENSHOTS_DIR = "org.eclipse.swtbot.screenshots.dir"; | |
40 | /** @see SWTBotPreferences#SCREENSHOT_FORMAT */ | |
41 | public static final String KEY_SCREENSHOT_FORMAT = "org.eclipse.swtbot.screenshots.format"; | |
42 | ||
43 | /** @see SWTBotPreferences#KEYBOARD_LAYOUT */ | |
44 | public static final String KEY_KEYBOARD_LAYOUT = "org.eclipse.swtbot.keyboard.layout"; | |
45 | /** @see SWTBotPreferences#TYPE_INTERVAL */ | |
46 | public static final String KEY_TYPE_INTERVAL = "org.eclipse.swtbot.keyboard.interval"; | |
47 | /** @see SWTBotPreferences#KEYBOARD_STRATEGY */ | |
48 | public static final String KEY_KEYBOARD_STRATEGY = "org.eclipse.swtbot.keyboard.strategy"; | |
49 | ||
50 | } |