Class JavaLinkGenerator.IsLinkableCheckResult

  • Enclosing class:
    JavaLinkGenerator

    private static final class JavaLinkGenerator.IsLinkableCheckResult
    extends java.lang.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 method
      Whether the token is a method invocation (as opposed to a local variable or field).
      private org.fife.ui.rsyntaxtextarea.Token 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 Detail

      • 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 Detail

      • IsLinkableCheckResult

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