()
| 1954 | |
| 1955 | |
| 1956 | protected void handleFindReference() { |
| 1957 | String ref = referenceCheck(true); |
| 1958 | if (ref != null) { |
| 1959 | showReference(ref + ".html"); |
| 1960 | } else { |
| 1961 | String text = textarea.getSelectedText(); |
| 1962 | if (text == null) { |
| 1963 | statusNotice(Language.text("editor.status.find_reference.select_word_first")); |
| 1964 | } else { |
| 1965 | statusNotice(Language.interpolate("editor.status.find_reference.not_available", text.trim())); |
| 1966 | } |
| 1967 | } |
| 1968 | } |
| 1969 | |
| 1970 | |
| 1971 | // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . |
no test coverage detected