Class Diagnostics

java.lang.Object
com.bea.wli.config.resource.Diagnostics
All Implemented Interfaces:
Serializable

public class Diagnostics extends Object implements Serializable
Container for a collection of Diagnostic entries relevant to a particular resource.
See Also:
  • Constructor Details

    • Diagnostics

      public Diagnostics(Ref ref)
      Constructor for creating a Diagnostics object with an empty collection of Diagnostic objects.
      Parameters:
      ref - the reference to the resource which this collection of diagnostics relate to. Cannot be null. This method does not check the existence of the given resource.
    • Diagnostics

      public Diagnostics(Ref ref, Collection<Diagnostic> diagnostics)
      Constructor for creating a Diagnostics object with the given initial set of Diagnostic object. More diagnostic objects can be added via the add(com.bea.wli.config.resource.Diagnostic) method.
      Parameters:
      ref - the reference to the resource which this collection of diagnostics relate to. Cannot be null. This method does not check the existence of the given resource.
      diagnostics - initial collection of diagnostics. Cannot be null. A copy of this collection is used. Therefore unmodifiable collections can be passed.
  • Method Details