Function: smart-java-tag

smart-java-tag is an autoloaded and byte-compiled function defined in hmouse-tag.el.

Signature

(smart-java-tag &optional IDENTIFIER NEXT)

Documentation

Jump to the definition of optional Java IDENTIFIER or the one at point.

Optional second arg NEXT means jump to next matching Java tag.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hmouse-tag.el
;;;###autoload
(defun smart-java-tag (&optional identifier next)
  "Jump to the definition of optional Java IDENTIFIER or the one at point.
Optional second arg NEXT means jump to next matching Java tag."
  (let ((tag (or identifier (smart-java-at-tag-p t))))
    ;; (message "Looking for `%s'..." tag)
    (condition-case ()
	(progn
	  (smart-tags-display tag next)
	  ;; (message "Found definition for `%s'" tag)
	  t)
      (error (progn (message "(smart-java-tag): `%s' definition not found in identifier lookup/tag tables" tag)
		    (beep))))))