Class JavaScriptLinkGenerator.IsLinkableCheckResult

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

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

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

    • IsLinkableCheckResult

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