KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > api > editor > settings > FontColorNames


1 /*
2  * The contents of this file are subject to the terms of the Common Development
3  * and Distribution License (the License). You may not use this file except in
4  * compliance with the License.
5  *
6  * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
7  * or http://www.netbeans.org/cddl.txt.
8  *
9  * When distributing Covered Code, include this CDDL Header Notice in each file
10  * and include the License file at http://www.netbeans.org/cddl.txt.
11  * If applicable, add the following below the CDDL Header, with the fields
12  * enclosed by brackets [] replaced by your own identifying information:
13  * "Portions Copyrighted [year] [name of copyright owner]"
14  *
15  * The Original Software is NetBeans. The Initial Developer of the Original
16  * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

19
20 package org.netbeans.api.editor.settings;
21
22 /**
23  * Fonts and Colors settings names
24  *
25  * @author Martin Roskanin
26  */

27 public final class FontColorNames {
28
29     /** Default coloring for the drawing. */
30     public static final String JavaDoc DEFAULT_COLORING = "default"; // NOI18N
31

32     /**
33      * Coloring that will be used for line numbers displayed on the left
34      * side on the screen.
35      */

36     public static final String JavaDoc LINE_NUMBER_COLORING = "line-number"; // NOI18N
37

38     /** Coloring used for guarded blocks */
39     public static final String JavaDoc GUARDED_COLORING = "guarded"; // NOI18N
40

41     /**
42      * Coloring that will be used for code folding icons displayed in editor
43      */

44     public static final String JavaDoc CODE_FOLDING_COLORING = "code-folding"; // NOI18N
45

46     /** Coloring that will be used for code folding side bar */
47     public static final String JavaDoc CODE_FOLDING_BAR_COLORING = "code-folding-bar"; // NOI18N
48

49     /** Coloring used for selection */
50     public static final String JavaDoc SELECTION_COLORING = "selection"; // NOI18N
51

52     /** Coloring used for highlight search */
53     public static final String JavaDoc HIGHLIGHT_SEARCH_COLORING = "highlight-search"; // NOI18N
54

55     /** Coloring used for incremental search */
56     public static final String JavaDoc INC_SEARCH_COLORING = "inc-search"; // NOI18N
57

58     /** Coloring used for block search */
59     public static final String JavaDoc BLOCK_SEARCH_COLORING = "block-search"; // NOI18N
60

61     /** Coloring used for the status bar */
62     public static final String JavaDoc STATUS_BAR_COLORING = "status-bar"; // NOI18N
63

64     /** Coloring used to mark important text in the status bar */
65     public static final String JavaDoc STATUS_BAR_BOLD_COLORING = "status-bar-bold"; // NOI18N
66

67     /** Coloring used to highlight the row where the caret resides */
68     public static final String JavaDoc CARET_ROW_COLORING = "highlight-caret-row"; // NOI18N
69

70     private FontColorNames() {
71         // to prevent instantialization
72
}
73 }
74
Popular Tags