Package clips.dicom.dicombaseclass

Examples of clips.dicom.dicombaseclass.DICOMException


  static protected Agregator        agregator = null;
  static protected Thread          dumpLoaderThread = null;
 
  static public void start() throws DICOMException, IOException{
    if (agregator != null) {
      throw new DICOMException("Попытка повторного запуска!");
    }
    agregator = new Agregator();
    try{
      DICOMDataInput.addEventHandler((DICOMImageEventsHandler)agregator);
      DICOMDataInput.addEventHandler((DICOMWaveformEventHandler)agregator);
View Full Code Here


  }
 
 
  static public void stop() throws DICOMException{
    if (agregator == null) {
      throw new DICOMException("Попытка останова незапущенного сервиса!");
    }
    if (dumpLoaderThread != null && dumpLoaderThread.isAlive()){
      try {
        dumpLoaderThread.join();
      } catch (InterruptedException ex) {
View Full Code Here

TOP

Related Classes of clips.dicom.dicombaseclass.DICOMException

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.