Variable: smart-java-package-regexp

smart-java-package-regexp is a variable defined in hmouse-tag.el.

Value

"[      /*]*\\(package\\|import\\)[     ]+\\([^;        \n
\f]+\\)"

Documentation

Regexp to match to Java package and import lines.

Keyword matched is grouping 1. Referent is grouping 2.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hmouse-tag.el
(defconst smart-java-package-regexp
  "[ \t/*]*\\(package\\|import\\)[ \t]+\\([^; \t\n\r\f]+\\)"
  "Regexp to match to Java `package' and `import' lines.
Keyword matched is grouping 1.  Referent is grouping 2.")