source: trunk/org.modelica.mdt.ui/src/org/modelica/mdt/ui/PreferenceConstants.java @ 1128

Last change on this file since 1128 was 491, checked in by adrpo, 17 years ago
  • mdt 0.7.0 changes
  • fixed some bugs
  • debugging
File size: 2.2 KB
Line 
1
2package org.modelica.mdt.ui;
3
4public class PreferenceConstants
5{
6
7    private PreferenceConstants() {
8    }
9   
10    /**
11     * A named preference that controls whether folding is enabled in the Java editor.
12     * <p>
13     * Value is of type <code>Boolean</code>.
14     * </p>
15     *
16     * @since 3.0
17     */
18    public static final String EDITOR_FOLDING_ENABLED= "editor_folding_enabled"; //$NON-NLS-1$
19   
20    /**
21     * A named preference that stores the configured folding provider.
22     * <p>
23     * Value is of type <code>String</code>.
24     * </p>
25     *
26     * @since 3.0
27     */
28    public static final String EDITOR_FOLDING_PROVIDER= "editor_folding_provider"; //$NON-NLS-1$
29   
30    /**
31     * A named preference that stores the value for Javadoc folding for the default folding provider.
32     * <p>
33     * Value is of type <code>Boolean</code>.
34     * </p>
35     *
36     * @since 3.0
37     */
38    public static final String EDITOR_FOLDING_JAVADOC= "editor_folding_default_javadoc"; //$NON-NLS-1$
39
40    /**
41     * A named preference that stores the value for inner type folding for the default folding provider.
42     * <p>
43     * Value is of type <code>Boolean</code>.
44     * </p>
45     *
46     * @since 3.0
47     */
48    public static final String EDITOR_FOLDING_INNERTYPES= "editor_folding_default_innertypes"; //$NON-NLS-1$
49
50    /**
51     * A named preference that stores the value for method folding for the default folding provider.
52     * <p>
53     * Value is of type <code>Boolean</code>.
54     * </p>
55     *
56     * @since 3.0
57     */
58    public static final String EDITOR_FOLDING_METHODS= "editor_folding_default_methods"; //$NON-NLS-1$
59
60    /**
61     * A named preference that stores the value for imports folding for the default folding provider.
62     * <p>
63     * Value is of type <code>Boolean</code>.
64     * </p>
65     *
66     * @since 3.0
67     */
68    public static final String EDITOR_FOLDING_IMPORTS= "editor_folding_default_imports"; //$NON-NLS-1$
69
70    /**
71     * A named preference that stores the value for header comment folding for the default folding provider.
72     * <p>
73     * Value is of type <code>Boolean</code>.
74     * </p>
75     *
76     * @since 3.1
77     */
78    public static final String EDITOR_FOLDING_HEADERS= "editor_folding_default_headers"; //$NON-NLS-1$
79   
80   
81    public final static String EDITOR_SYNC_OUTLINE_ON_CURSOR_MOVE= "ModelicaEditor.SyncOutlineOnCursorMove"; //$NON-NLS-1$ 
82   
83}
Note: See TracBrowser for help on using the repository browser.