Package org.jzkit.search.provider.iface

Examples of org.jzkit.search.provider.iface.Diagnostic


   * @param status_code             e.g. "diag.bib1.1";
   * @param target_name             the name of the target for the diagnostic
   * @param addinfo                 any additional information to include
   */
  public void setDiagnosticStatus(String status_code, String target_name, String addinfo ) {    
     Diagnostic the_diagnostic     = new Diagnostic(status_code, target_name, addinfo);
     DiagnosticEvent e             = new DiagnosticEvent(the_diagnostic);
     setChanged();
     notifyObservers(e);   
  }
View Full Code Here

TOP

Related Classes of org.jzkit.search.provider.iface.Diagnostic

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.