IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
 
[Sommaire]  [Top 50]  [F.A.Q.]  [ Java SE ]  [ Java EE ]  [Javadoc standard]  [Contact]
[ 1.4.2 ]  [ 5.0 ]  [ 6.0
Rechercher   
Dans
Options   sensible à la casse
étendre la recherche aux descriptions
Préférences
fr en 
 
Moteurs de recherche
JavaTM 2 Platform Std. Ed. v1.6.0

javax.tools
Class DiagnosticCollector<S>

java.lang.Object
  extended by javax.tools.DiagnosticCollector<S>
Type Parameters:
S - the type of source objects used by diagnostics received by this object
All Implemented Interfaces:
DiagnosticListener<S>

public final class DiagnosticCollector<S>
extends Object
implements DiagnosticListener<S>

Provides an easy way to collect diagnostics in a list.

Since:
1.6

Constructor Summary
DiagnosticCollector()
           
 
Method Summary
 List<Diagnostic<? extends S>> getDiagnostics()
          Gets a list view of diagnostics collected by this object.
 void report(Diagnostic<? extends S> diagnostic)
          Invoked when a problem is found.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DiagnosticCollector

public DiagnosticCollector()
Method Detail

report

public void report(Diagnostic<? extends S> diagnostic)
Description copied from interface: DiagnosticListener
Invoked when a problem is found.

Specified by:
report in interface DiagnosticListener<S>
Parameters:
diagnostic - a diagnostic representing the problem that was found

getDiagnostics

public List<Diagnostic<? extends S>> getDiagnostics()
Gets a list view of diagnostics collected by this object.

Returns:
a list view of diagnostics

Copyright 2003 Sun Microsystems, Inc. All rights reserved