01: /*
02: * soapUI, copyright (C) 2004-2007 eviware.com
03: *
04: * soapUI is free software; you can redistribute it and/or modify it under the
05: * terms of version 2.1 of the GNU Lesser General Public License as published by
06: * the Free Software Foundation.
07: *
08: * soapUI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
09: * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10: * See the GNU Lesser General Public License for more details at gnu.org.
11: */
12:
13: package com.eviware.soapui.settings;
14:
15: /**
16: * UI-related settings constants
17: *
18: * @author Ole.Matzura
19: */
20:
21: public interface UISettings {
22: public final static String EDITOR_FONT = UISettings.class
23: .getSimpleName()
24: + "@" + "editor-font";
25:
26: public final static String ORDER_PROJECTS = UISettings.class
27: .getSimpleName()
28: + "@order-projects";
29: public final static String ORDER_REQUESTS = UISettings.class
30: .getSimpleName()
31: + "@order-requests";
32: public final static String ORDER_LOADTESTS = UISettings.class
33: .getSimpleName()
34: + "@order-loadtests";
35: public final static String ORDER_TESTSUITES = UISettings.class
36: .getSimpleName()
37: + "@order-testsuites";
38: public final static String ORDER_INTERFACES = UISettings.class
39: .getSimpleName()
40: + "@order-interfaces";
41: public final static String NO_RESIZE_REQUEST_EDITOR = UISettings.class
42: .getSimpleName()
43: + "@no_resize_request_editor";
44: public final static String START_WITH_REQUEST_TABS = UISettings.class
45: .getSimpleName()
46: + "@start_with_request_tabs";
47: public final static String AUTO_VALIDATE_REQUEST = UISettings.class
48: .getSimpleName()
49: + "@auto_validate_request";
50: public final static String ABORT_ON_INVALID_REQUEST = UISettings.class
51: .getSimpleName()
52: + "@abort_on_invalid_request";
53: public final static String AUTO_VALIDATE_RESPONSE = UISettings.class
54: .getSimpleName()
55: + "@auto_validate_response";
56: public final static String CREATE_BACKUP = UISettings.class
57: .getSimpleName()
58: + "@create_backup";
59: public final static String BACKUP_FOLDER = UISettings.class
60: .getSimpleName()
61: + "@backup_folder";
62:
63: public static final String DEFAULT_EDITOR_FONT = "Courier plain 11";
64:
65: public static final String ORDER_MOCKOPERATION = UISettings.class
66: .getSimpleName()
67: + "@order-mockoperations";
68: public static final String ORDER_MOCKCASES = UISettings.class
69: .getSimpleName()
70: + "@order-mockcases";
71:
72: public static final String DESKTOP_TYPE = UISettings.class
73: .getSimpleName()
74: + "@desktop-type";
75: public static final String NATIVE_LAF = UISettings.class
76: .getSimpleName()
77: + "@native-laf";
78: public static final String DONT_DISABLE_GROOVY_LOG = UISettings.class
79: .getSimpleName()
80: + "@dont-disable-groovy-log";
81: }
|