Class JavaScriptLinkGenerator.IsLinkableCheckResult

  • Enclosing class:
    JavaScriptLinkGenerator

    private static class JavaScriptLinkGenerator.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 function
      Whether the token is a function invocation (as opposed to a local variable or object).
      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 function)  
    • 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.
      • function

        private boolean function
        Whether the token is a function invocation (as opposed to a local variable or object).
    • Constructor Detail

      • IsLinkableCheckResult

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