langtools/src/share/classes/com/sun/tools/javac/jvm/ClassReader.java
changeset 6143 79b7dee406cc
parent 6030 8cb12024680d
child 6592 dc56420a69bc
equal deleted inserted replaced
6032:03b276d8e6a6 6143:79b7dee406cc
  2626     /** Output for "-verbose" option.
  2626     /** Output for "-verbose" option.
  2627      *  @param key The key to look up the correct internationalized string.
  2627      *  @param key The key to look up the correct internationalized string.
  2628      *  @param arg An argument for substitution into the output string.
  2628      *  @param arg An argument for substitution into the output string.
  2629      */
  2629      */
  2630     private void printVerbose(String key, CharSequence arg) {
  2630     private void printVerbose(String key, CharSequence arg) {
  2631         Log.printLines(log.noticeWriter, Log.getLocalizedString("verbose." + key, arg));
  2631         log.printNoteLines("verbose." + key, arg);
  2632     }
  2632     }
  2633 
  2633 
  2634     /** Output for "-checkclassfile" option.
  2634     /** Output for "-checkclassfile" option.
  2635      *  @param key The key to look up the correct internationalized string.
  2635      *  @param key The key to look up the correct internationalized string.
  2636      *  @param arg An argument for substitution into the output string.
  2636      *  @param arg An argument for substitution into the output string.
  2637      */
  2637      */
  2638     private void printCCF(String key, Object arg) {
  2638     private void printCCF(String key, Object arg) {
  2639         Log.printLines(log.noticeWriter, Log.getLocalizedString(key, arg));
  2639         log.printNoteLines(key, arg);
  2640     }
  2640     }
  2641 
  2641 
  2642 
  2642 
  2643     public interface SourceCompleter {
  2643     public interface SourceCompleter {
  2644         void complete(ClassSymbol sym)
  2644         void complete(ClassSymbol sym)