Class ActiveLineRangeEvent

  • All Implemented Interfaces:
    java.io.Serializable

    public class ActiveLineRangeEvent
    extends java.util.EventObject
    The event fired by RSyntaxTextAreas when the active line range changes.
    Version:
    1.0
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private int max  
      private int min  
      • Fields inherited from class java.util.EventObject

        source
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getMax()
      Returns the last line in the active line range.
      int getMin()
      Returns the first line in the active line range.
      • Methods inherited from class java.util.EventObject

        getSource, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • min

        private int min
      • max

        private int max
    • Constructor Detail

      • ActiveLineRangeEvent

        public ActiveLineRangeEvent​(RSyntaxTextArea source,
                                    int min,
                                    int max)
        Constructor.
        Parameters:
        source - The text area.
        min - The first line in the active line range, or -1 if the line range is being cleared.
        max - The last line in the active line range, or -1 if the line range is being cleared.
    • Method Detail

      • getMax

        public int getMax()
        Returns the last line in the active line range.
        Returns:
        The last line, or -1 if the range is being cleared.
        See Also:
        getMin()
      • getMin

        public int getMin()
        Returns the first line in the active line range.
        Returns:
        The first line, or -1 if the range is being cleared.
        See Also:
        getMax()