Searched refs:noteKey (Results 1 - 2 of 2) sorted by relevance

/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/util/
H A DAbstractLog.java326 note(diags.noteKey(key, args));
330 * @param noteKey The key for the localized notification message.
332 public void note(Note noteKey) { argument
333 report(diags.note(source, null, noteKey));
341 note(pos, diags.noteKey(key, args));
345 * @param noteKey The key for the localized notification message.
347 public void note(DiagnosticPosition pos, Note noteKey) { argument
348 report(diags.note(source, pos, noteKey));
356 note(pos, diags.noteKey(key, args));
360 * @param noteKey Th
362 note(int pos, Note noteKey) argument
377 note(JavaFileObject file, Note noteKey) argument
392 mandatoryNote(final JavaFileObject file, Note noteKey) argument
[all...]
H A DJCDiagnostic.java182 return mandatoryNote(source, noteKey(key, args));
187 * @param noteKey The key for the localized note message.
190 public JCDiagnostic mandatoryNote(DiagnosticSource source, Note noteKey) { argument
191 return create(null, EnumSet.of(DiagnosticFlag.MANDATORY), source, null, noteKey);
201 return note(source, pos, noteKey(key, args));
208 * @param noteKey The key for the localized note message.
211 DiagnosticSource source, DiagnosticPosition pos, Note noteKey) {
212 return create(null, EnumSet.noneOf(DiagnosticFlag.class), source, pos, noteKey);
312 Note noteKey(String code, Object... args) { method in class:JCDiagnostic.Factory
210 note( DiagnosticSource source, DiagnosticPosition pos, Note noteKey) argument

Completed in 87 milliseconds