Log the deprecation warning. @param tokenName The name of the deprecated token @param name The tag name that was used @param source The object in which the tag was found @param value The value of the tag @param message A message describing corrective action.
(String tokenName, String name, URI source, String value, String message)
| 100 | * @param message A message describing corrective action. |
| 101 | */ |
| 102 | public static void deprecationWarning(String tokenName, String name, URI source, String value, String message) |
| 103 | { |
| 104 | final String msg = LanguageBundle.getFormattedString("Warnings.LstTokens.Deprecated", //$NON-NLS-1$ |
| 105 | tokenName, value, name, source, message); |
| 106 | deprecationWarning(msg); |
| 107 | } |
| 108 | |
| 109 | /** |
| 110 | * Log the deprecation warning |
no test coverage detected