Package org.fife.ui.autocomplete
Class AutoCompletionStyleContext
- java.lang.Object
-
- org.fife.ui.autocomplete.AutoCompletionStyleContext
-
public class AutoCompletionStyleContext extends Object
Manages the colors shared across the library.- Version:
- 1.0
- Author:
- Robert Futrell
-
-
Constructor Summary
Constructors Constructor Description AutoCompletionStyleContext()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Color
getParameterCopyColor()
Returns the color of the highlight painted on copies of editable parameters in parameterized completions.Color
getParameterizedCompletionCursorPositionColor()
Returns the color used to denote the ending caret position for parameterized completions.Color
getParameterOutlineColor()
Returns the color of the outline highlight used to denote editable parameters in parameterized completions.void
setParameterCopyColor(Color color)
Sets the color of the highlight painted on copies of editable parameters in parameterized completions.void
setParameterizedCompletionCursorPositionColor(Color color)
Sets the color used to denote the ending caret position for parameterized completions.void
setParameterOutlineColor(Color color)
Sets the color of the outline highlight used to denote editable parameters in parameterized completions.
-
-
-
Method Detail
-
getParameterCopyColor
public Color getParameterCopyColor()
Returns the color of the highlight painted on copies of editable parameters in parameterized completions.- Returns:
- The color used.
- See Also:
setParameterCopyColor(Color)
-
getParameterizedCompletionCursorPositionColor
public Color getParameterizedCompletionCursorPositionColor()
Returns the color used to denote the ending caret position for parameterized completions.- Returns:
- The color used.
- See Also:
setParameterizedCompletionCursorPositionColor(Color)
-
getParameterOutlineColor
public Color getParameterOutlineColor()
Returns the color of the outline highlight used to denote editable parameters in parameterized completions.- Returns:
- The color used.
- See Also:
setParameterOutlineColor(Color)
-
setParameterCopyColor
public void setParameterCopyColor(Color color)
Sets the color of the highlight painted on copies of editable parameters in parameterized completions.- Parameters:
color
- The color to use.- See Also:
setParameterCopyColor(Color)
-
setParameterizedCompletionCursorPositionColor
public void setParameterizedCompletionCursorPositionColor(Color color)
Sets the color used to denote the ending caret position for parameterized completions.- Parameters:
color
- The color to use.- See Also:
getParameterizedCompletionCursorPositionColor()
-
setParameterOutlineColor
public void setParameterOutlineColor(Color color)
Sets the color of the outline highlight used to denote editable parameters in parameterized completions.- Parameters:
color
- The color to use.- See Also:
getParameterOutlineColor()
-
-