Class JavaLinkGenerator.IsLinkableCheckResult

java.lang.Object
org.fife.rsta.ac.java.JavaLinkGenerator.IsLinkableCheckResult
Enclosing class:
JavaLinkGenerator

private static final class JavaLinkGenerator.IsLinkableCheckResult extends Object
The result of checking whether a region of code under the mouse is possibly link-able.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private boolean
    Whether the token is a method invocation (as opposed to a local variable or field).
    private org.fife.ui.rsyntaxtextarea.Token
    The token under the mouse position.
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    private
    IsLinkableCheckResult(org.fife.ui.rsyntaxtextarea.Token token, boolean method)
     
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • token

      private org.fife.ui.rsyntaxtextarea.Token token
      The token under the mouse position.
    • method

      private boolean method
      Whether the token is a method invocation (as opposed to a local variable or field).
  • Constructor Details

    • IsLinkableCheckResult

      private IsLinkableCheckResult(org.fife.ui.rsyntaxtextarea.Token token, boolean method)