Class SyntaxStyle


  • public class SyntaxStyle
    extends java.lang.Object
    A simple text style class. It can specify the color, italic flag, and bold flag of a run of text.
    • Constructor Summary

      Constructors 
      Constructor Description
      SyntaxStyle​(java.awt.Color fgColor, java.awt.Color bgColor, java.awt.Font font)
      Creates a new SyntaxStyle.
    • Constructor Detail

      • SyntaxStyle

        public SyntaxStyle​(java.awt.Color fgColor,
                           java.awt.Color bgColor,
                           java.awt.Font font)
        Creates a new SyntaxStyle.
        Parameters:
        fgColor - The text color
        bgColor - The background color
        font - The text font
    • Method Detail

      • getForegroundColor

        public java.awt.Color getForegroundColor()
        Returns the text color.
      • getBackgroundColor

        public java.awt.Color getBackgroundColor()
        Returns the background color.
      • getFont

        public java.awt.Font getFont()
        Returns the style font.
      • equals

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object